pub struct UpbitDepositAddress {
pub currency: SmartString,
pub deposit_address: SmartString,
pub secondary_address: Option<SmartString>,
}Expand description
Deposit address information
Fields§
§currency: SmartStringCurrency code
deposit_address: SmartStringDeposit address
secondary_address: Option<SmartString>Secondary address (e.g., memo/tag)
Trait Implementations§
Source§impl Clone for UpbitDepositAddress
impl Clone for UpbitDepositAddress
Source§fn clone(&self) -> UpbitDepositAddress
fn clone(&self) -> UpbitDepositAddress
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UpbitDepositAddress
impl Debug for UpbitDepositAddress
Source§impl<'de> Deserialize<'de> for UpbitDepositAddress
impl<'de> Deserialize<'de> for UpbitDepositAddress
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpbitDepositAddress
impl RefUnwindSafe for UpbitDepositAddress
impl Send for UpbitDepositAddress
impl Sync for UpbitDepositAddress
impl Unpin for UpbitDepositAddress
impl UnwindSafe for UpbitDepositAddress
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more