pub struct DepositAddress {
pub address: String,
pub expire_time: String,
pub new: Option<bool>,
pub memo: Option<String>,
pub tag: Option<String>,
}
Expand description
Description of a deposit address
Fields§
§address: String
§expire_time: String
§new: Option<bool>
§memo: Option<String>
§tag: Option<String>
Trait Implementations§
Source§impl Clone for DepositAddress
impl Clone for DepositAddress
Source§fn clone(&self) -> DepositAddress
fn clone(&self) -> DepositAddress
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DepositAddress
impl Debug for DepositAddress
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
Source§impl PartialEq for DepositAddress
impl PartialEq for DepositAddress
impl StructuralPartialEq for DepositAddress
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