pub struct SorOrderResponseFillsItem {
pub alloc_id: i64,
pub commission: String,
pub commission_asset: String,
pub match_type: String,
pub price: String,
pub qty: String,
pub trade_id: i64,
}
Expand description
SorOrderResponseFillsItem
JSON schema
{
"type": "object",
"required": [
"allocId",
"commission",
"commissionAsset",
"matchType",
"price",
"qty",
"tradeId"
],
"properties": {
"allocId": {
"examples": [
0
],
"type": "integer",
"format": "int64"
},
"commission": {
"examples": [
"0.00000000"
],
"type": "string"
},
"commissionAsset": {
"examples": [
"BTC"
],
"type": "string"
},
"matchType": {
"examples": [
"ONE_PARTY_TRADE_REPORT"
],
"type": "string"
},
"price": {
"examples": [
"28000.00000000"
],
"type": "string"
},
"qty": {
"examples": [
"0.50000000"
],
"type": "string"
},
"tradeId": {
"examples": [
-1
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§alloc_id: i64
§commission: String
§commission_asset: String
§match_type: String
§price: String
§qty: String
§trade_id: i64
Trait Implementations§
Source§impl Clone for SorOrderResponseFillsItem
impl Clone for SorOrderResponseFillsItem
Source§fn clone(&self) -> SorOrderResponseFillsItem
fn clone(&self) -> SorOrderResponseFillsItem
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 Debug for SorOrderResponseFillsItem
impl Debug for SorOrderResponseFillsItem
Source§impl<'de> Deserialize<'de> for SorOrderResponseFillsItem
impl<'de> Deserialize<'de> for SorOrderResponseFillsItem
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<&SorOrderResponseFillsItem> for SorOrderResponseFillsItem
impl From<&SorOrderResponseFillsItem> for SorOrderResponseFillsItem
Source§fn from(value: &SorOrderResponseFillsItem) -> Self
fn from(value: &SorOrderResponseFillsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SorOrderResponseFillsItem
impl RefUnwindSafe for SorOrderResponseFillsItem
impl Send for SorOrderResponseFillsItem
impl Sync for SorOrderResponseFillsItem
impl Unpin for SorOrderResponseFillsItem
impl UnwindSafe for SorOrderResponseFillsItem
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