pub struct AssetDetail {
pub min_withdraw_amount: f64,
pub deposit_status: bool,
pub withdraw_fee: f64,
pub withdraw_status: bool,
pub deposit_tip: Option<String>,
}Fields§
§min_withdraw_amount: f64§deposit_status: boolfalse if ALL of networks’ are false
withdraw_fee: f64§withdraw_status: boolfalse if ALL of networks’ are false
deposit_tip: Option<String>reason
Trait Implementations§
Source§impl Clone for AssetDetail
impl Clone for AssetDetail
Source§fn clone(&self) -> AssetDetail
fn clone(&self) -> AssetDetail
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AssetDetail
impl Debug for AssetDetail
Source§impl<'de> Deserialize<'de> for AssetDetail
impl<'de> Deserialize<'de> for AssetDetail
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 AssetDetail
impl RefUnwindSafe for AssetDetail
impl Send for AssetDetail
impl Sync for AssetDetail
impl Unpin for AssetDetail
impl UnsafeUnpin for AssetDetail
impl UnwindSafe for AssetDetail
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