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>,
}Expand description
Asset detail information.
Fields§
§min_withdraw_amount: f64Minimum withdrawal amount.
deposit_status: boolWhether deposit is enabled.
withdraw_fee: f64Withdrawal fee.
withdraw_status: boolWhether withdrawal is enabled.
deposit_tip: Option<String>Deposit tip (optional).
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 · 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 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