pub struct WithdrawalAddress {
pub address: String,
pub asset: String,
pub method: String,
pub key: String,
pub memo: Option<String>,
pub verified: bool,
}
Expand description
Description of a withdrawal method
Fields§
§address: String
§asset: String
§method: String
§key: String
§memo: Option<String>
§verified: bool
Trait Implementations§
Source§impl Clone for WithdrawalAddress
impl Clone for WithdrawalAddress
Source§fn clone(&self) -> WithdrawalAddress
fn clone(&self) -> WithdrawalAddress
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 WithdrawalAddress
impl Debug for WithdrawalAddress
Source§impl<'de> Deserialize<'de> for WithdrawalAddress
impl<'de> Deserialize<'de> for WithdrawalAddress
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 WithdrawalAddress
impl PartialEq for WithdrawalAddress
impl StructuralPartialEq for WithdrawalAddress
Auto Trait Implementations§
impl Freeze for WithdrawalAddress
impl RefUnwindSafe for WithdrawalAddress
impl Send for WithdrawalAddress
impl Sync for WithdrawalAddress
impl Unpin for WithdrawalAddress
impl UnwindSafe for WithdrawalAddress
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