pub struct BlvtTokenInfoResponseItemCurrentBasketsItem {
pub amount: String,
pub notional_value: String,
pub symbol: String,
}
Expand description
BlvtTokenInfoResponseItemCurrentBasketsItem
JSON schema
{
"type": "object",
"required": [
"amount",
"notionalValue",
"symbol"
],
"properties": {
"amount": {
"examples": [
"-1183.984"
],
"type": "string"
},
"notionalValue": {
"examples": [
"-22871089.96704"
],
"type": "string"
},
"symbol": {
"examples": [
"BTCUSDT"
],
"type": "string"
}
}
}
Fields§
§amount: String
§notional_value: String
§symbol: String
Trait Implementations§
Source§impl Clone for BlvtTokenInfoResponseItemCurrentBasketsItem
impl Clone for BlvtTokenInfoResponseItemCurrentBasketsItem
Source§fn clone(&self) -> BlvtTokenInfoResponseItemCurrentBasketsItem
fn clone(&self) -> BlvtTokenInfoResponseItemCurrentBasketsItem
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 BlvtTokenInfoResponseItemCurrentBasketsItem
impl<'de> Deserialize<'de> for BlvtTokenInfoResponseItemCurrentBasketsItem
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<&BlvtTokenInfoResponseItemCurrentBasketsItem> for BlvtTokenInfoResponseItemCurrentBasketsItem
impl From<&BlvtTokenInfoResponseItemCurrentBasketsItem> for BlvtTokenInfoResponseItemCurrentBasketsItem
Source§fn from(value: &BlvtTokenInfoResponseItemCurrentBasketsItem) -> Self
fn from(value: &BlvtTokenInfoResponseItemCurrentBasketsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BlvtTokenInfoResponseItemCurrentBasketsItem
impl RefUnwindSafe for BlvtTokenInfoResponseItemCurrentBasketsItem
impl Send for BlvtTokenInfoResponseItemCurrentBasketsItem
impl Sync for BlvtTokenInfoResponseItemCurrentBasketsItem
impl Unpin for BlvtTokenInfoResponseItemCurrentBasketsItem
impl UnwindSafe for BlvtTokenInfoResponseItemCurrentBasketsItem
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