pub struct AssetAssetDetailResponse {
pub ctr: AssetAssetDetailResponseCtr,
}
Expand description
AssetAssetDetailResponse
JSON schema
{
"type": "object",
"required": [
"CTR"
],
"properties": {
"CTR": {
"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§
§ctr: AssetAssetDetailResponseCtr
Trait Implementations§
Source§impl Clone for AssetAssetDetailResponse
impl Clone for AssetAssetDetailResponse
Source§fn clone(&self) -> AssetAssetDetailResponse
fn clone(&self) -> AssetAssetDetailResponse
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 AssetAssetDetailResponse
impl Debug for AssetAssetDetailResponse
Source§impl<'de> Deserialize<'de> for AssetAssetDetailResponse
impl<'de> Deserialize<'de> for AssetAssetDetailResponse
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<&AssetAssetDetailResponse> for AssetAssetDetailResponse
impl From<&AssetAssetDetailResponse> for AssetAssetDetailResponse
Source§fn from(value: &AssetAssetDetailResponse) -> Self
fn from(value: &AssetAssetDetailResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetAssetDetailResponse
impl RefUnwindSafe for AssetAssetDetailResponse
impl Send for AssetAssetDetailResponse
impl Sync for AssetAssetDetailResponse
impl Unpin for AssetAssetDetailResponse
impl UnwindSafe for AssetAssetDetailResponse
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