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