pub struct AssetGetFundingAssetResponseItem {
pub asset: String,
pub btc_valuation: String,
pub free: String,
pub freeze: String,
pub locked: String,
pub withdrawing: String,
}
Expand description
AssetGetFundingAssetResponseItem
JSON schema
{
"type": "object",
"required": [
"asset",
"btcValuation",
"free",
"freeze",
"locked",
"withdrawing"
],
"properties": {
"asset": {
"examples": [
"USDT"
],
"type": "string"
},
"btcValuation": {
"examples": [
"0.00000091"
],
"type": "string"
},
"free": {
"examples": [
"1"
],
"type": "string"
},
"freeze": {
"examples": [
"0"
],
"type": "string"
},
"locked": {
"examples": [
"0"
],
"type": "string"
},
"withdrawing": {
"examples": [
"0"
],
"type": "string"
}
}
}
Fields§
§asset: String
§btc_valuation: String
§free: String
§freeze: String
§locked: String
§withdrawing: String
Trait Implementations§
Source§impl Clone for AssetGetFundingAssetResponseItem
impl Clone for AssetGetFundingAssetResponseItem
Source§fn clone(&self) -> AssetGetFundingAssetResponseItem
fn clone(&self) -> AssetGetFundingAssetResponseItem
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<'de> Deserialize<'de> for AssetGetFundingAssetResponseItem
impl<'de> Deserialize<'de> for AssetGetFundingAssetResponseItem
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<&AssetGetFundingAssetResponseItem> for AssetGetFundingAssetResponseItem
impl From<&AssetGetFundingAssetResponseItem> for AssetGetFundingAssetResponseItem
Source§fn from(value: &AssetGetFundingAssetResponseItem) -> Self
fn from(value: &AssetGetFundingAssetResponseItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetGetFundingAssetResponseItem
impl RefUnwindSafe for AssetGetFundingAssetResponseItem
impl Send for AssetGetFundingAssetResponseItem
impl Sync for AssetGetFundingAssetResponseItem
impl Unpin for AssetGetFundingAssetResponseItem
impl UnwindSafe for AssetGetFundingAssetResponseItem
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