pub struct DepositAddress {
pub method: String,
pub ccy: String,
pub address: String,
pub pool_address: Option<String>,
/* private fields */
}Fields§
§method: String§ccy: String§address: String§pool_address: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for DepositAddress
impl<'de> Deserialize<'de> for DepositAddress
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 DepositAddress
impl RefUnwindSafe for DepositAddress
impl Send for DepositAddress
impl Sync for DepositAddress
impl Unpin for DepositAddress
impl UnwindSafe for DepositAddress
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