pub struct AssetAssetDetailResponseCtr {
pub deposit_status: bool,
pub deposit_tip: String,
pub min_withdraw_amount: String,
pub withdraw_fee: i64,
pub withdraw_status: bool,
}Expand description
AssetAssetDetailResponseCtr
JSON schema
{
"type": "object",
"required": [
"depositStatus",
"depositTip",
"minWithdrawAmount",
"withdrawFee",
"withdrawStatus"
],
"properties": {
"depositStatus": {
"description": "deposit status (false if ALL of networks' are false)",
"examples": [
false
],
"type": "boolean"
},
"depositTip": {
"examples": [
"Delisted, Deposit Suspended"
],
"type": "string"
},
"minWithdrawAmount": {
"examples": [
"70.00000000"
],
"type": "string"
},
"withdrawFee": {
"examples": [
35
],
"type": "integer",
"format": "int64"
},
"withdrawStatus": {
"description": "withdrawStatus status (false if ALL of networks' are false)",
"type": "boolean"
}
}
}Fields§
§deposit_status: booldeposit status (false if ALL of networks’ are false)
deposit_tip: String§min_withdraw_amount: String§withdraw_fee: i64§withdraw_status: boolwithdrawStatus status (false if ALL of networks’ are false)
Trait Implementations§
Source§impl Clone for AssetAssetDetailResponseCtr
impl Clone for AssetAssetDetailResponseCtr
Source§fn clone(&self) -> AssetAssetDetailResponseCtr
fn clone(&self) -> AssetAssetDetailResponseCtr
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 AssetAssetDetailResponseCtr
impl Debug for AssetAssetDetailResponseCtr
Source§impl<'de> Deserialize<'de> for AssetAssetDetailResponseCtr
impl<'de> Deserialize<'de> for AssetAssetDetailResponseCtr
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 From<&AssetAssetDetailResponseCtr> for AssetAssetDetailResponseCtr
impl From<&AssetAssetDetailResponseCtr> for AssetAssetDetailResponseCtr
Source§fn from(value: &AssetAssetDetailResponseCtr) -> Self
fn from(value: &AssetAssetDetailResponseCtr) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetAssetDetailResponseCtr
impl RefUnwindSafe for AssetAssetDetailResponseCtr
impl Send for AssetAssetDetailResponseCtr
impl Sync for AssetAssetDetailResponseCtr
impl Unpin for AssetAssetDetailResponseCtr
impl UnwindSafe for AssetAssetDetailResponseCtr
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