pub struct GetMarginTransferResponseRowsItem {
pub amount: String,
pub asset: String,
pub status: String,
pub timestamp: i64,
pub tx_id: i64,
pub type_: String,
}
Expand description
GetMarginTransferResponseRowsItem
JSON schema
{
"type": "object",
"required": [
"amount",
"asset",
"status",
"timestamp",
"txId",
"type"
],
"properties": {
"amount": {
"type": "string"
},
"asset": {
"type": "string"
},
"status": {
"type": "string"
},
"timestamp": {
"type": "integer",
"format": "int64"
},
"txId": {
"type": "integer",
"format": "int64"
},
"type": {
"type": "string"
}
}
}
Fields§
§amount: String
§asset: String
§status: String
§timestamp: i64
§tx_id: i64
§type_: String
Trait Implementations§
Source§impl Clone for GetMarginTransferResponseRowsItem
impl Clone for GetMarginTransferResponseRowsItem
Source§fn clone(&self) -> GetMarginTransferResponseRowsItem
fn clone(&self) -> GetMarginTransferResponseRowsItem
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 GetMarginTransferResponseRowsItem
impl<'de> Deserialize<'de> for GetMarginTransferResponseRowsItem
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<&GetMarginTransferResponseRowsItem> for GetMarginTransferResponseRowsItem
impl From<&GetMarginTransferResponseRowsItem> for GetMarginTransferResponseRowsItem
Source§fn from(value: &GetMarginTransferResponseRowsItem) -> Self
fn from(value: &GetMarginTransferResponseRowsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetMarginTransferResponseRowsItem
impl RefUnwindSafe for GetMarginTransferResponseRowsItem
impl Send for GetMarginTransferResponseRowsItem
impl Sync for GetMarginTransferResponseRowsItem
impl Unpin for GetMarginTransferResponseRowsItem
impl UnwindSafe for GetMarginTransferResponseRowsItem
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