pub struct BithumbDepositAddress {
pub currency: SmartString,
pub deposit_address: SmartString,
pub secondary_address: Option<SmartString>,
pub net_type: 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)
net_type: Option<SmartString>Network type
Trait Implementations§
Source§impl Clone for BithumbDepositAddress
impl Clone for BithumbDepositAddress
Source§fn clone(&self) -> BithumbDepositAddress
fn clone(&self) -> BithumbDepositAddress
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 BithumbDepositAddress
impl Debug for BithumbDepositAddress
Source§impl<'de> Deserialize<'de> for BithumbDepositAddress
impl<'de> Deserialize<'de> for BithumbDepositAddress
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 BithumbDepositAddress
impl RefUnwindSafe for BithumbDepositAddress
impl Send for BithumbDepositAddress
impl Sync for BithumbDepositAddress
impl Unpin for BithumbDepositAddress
impl UnwindSafe for BithumbDepositAddress
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