pub struct MarginAvailableInventoryResponseAssets {
pub matic: String,
pub shib: String,
pub stpt: String,
pub tvk: String,
}
Expand description
MarginAvailableInventoryResponseAssets
JSON schema
{
"type": "object",
"required": [
"MATIC",
"SHIB",
"STPT",
"TVK"
],
"properties": {
"MATIC": {
"examples": [
"100000000"
],
"type": "string"
},
"SHIB": {
"examples": [
"97409653"
],
"type": "string"
},
"STPT": {
"examples": [
"100000000"
],
"type": "string"
},
"TVK": {
"examples": [
"100000000"
],
"type": "string"
}
}
}
Fields§
§matic: String
§shib: String
§stpt: String
§tvk: String
Trait Implementations§
Source§impl Clone for MarginAvailableInventoryResponseAssets
impl Clone for MarginAvailableInventoryResponseAssets
Source§fn clone(&self) -> MarginAvailableInventoryResponseAssets
fn clone(&self) -> MarginAvailableInventoryResponseAssets
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 MarginAvailableInventoryResponseAssets
impl<'de> Deserialize<'de> for MarginAvailableInventoryResponseAssets
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<&MarginAvailableInventoryResponseAssets> for MarginAvailableInventoryResponseAssets
impl From<&MarginAvailableInventoryResponseAssets> for MarginAvailableInventoryResponseAssets
Source§fn from(value: &MarginAvailableInventoryResponseAssets) -> Self
fn from(value: &MarginAvailableInventoryResponseAssets) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarginAvailableInventoryResponseAssets
impl RefUnwindSafe for MarginAvailableInventoryResponseAssets
impl Send for MarginAvailableInventoryResponseAssets
impl Sync for MarginAvailableInventoryResponseAssets
impl Unpin for MarginAvailableInventoryResponseAssets
impl UnwindSafe for MarginAvailableInventoryResponseAssets
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