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