pub struct LoanCustomizeMarginCallResponse {
pub rows: Vec<LoanCustomizeMarginCallResponseRowsItem>,
pub total: i32,
}
Expand description
LoanCustomizeMarginCallResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"afterMarginCall",
"collateralCoin",
"customizeTime",
"orderId",
"preMarginCall"
],
"properties": {
"afterMarginCall": {
"examples": [
"0.7"
],
"type": "string"
},
"collateralCoin": {
"examples": [
"BNB"
],
"type": "string"
},
"customizeTime": {
"examples": [
1575018510000
],
"type": "integer",
"format": "int64"
},
"orderId": {
"examples": [
"100000001"
],
"type": "string"
},
"preMarginCall": {
"examples": [
"0.8"
],
"type": "string"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§rows: Vec<LoanCustomizeMarginCallResponseRowsItem>
§total: i32
Trait Implementations§
Source§impl Clone for LoanCustomizeMarginCallResponse
impl Clone for LoanCustomizeMarginCallResponse
Source§fn clone(&self) -> LoanCustomizeMarginCallResponse
fn clone(&self) -> LoanCustomizeMarginCallResponse
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 LoanCustomizeMarginCallResponse
impl<'de> Deserialize<'de> for LoanCustomizeMarginCallResponse
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<&LoanCustomizeMarginCallResponse> for LoanCustomizeMarginCallResponse
impl From<&LoanCustomizeMarginCallResponse> for LoanCustomizeMarginCallResponse
Source§fn from(value: &LoanCustomizeMarginCallResponse) -> Self
fn from(value: &LoanCustomizeMarginCallResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanCustomizeMarginCallResponse
impl RefUnwindSafe for LoanCustomizeMarginCallResponse
impl Send for LoanCustomizeMarginCallResponse
impl Sync for LoanCustomizeMarginCallResponse
impl Unpin for LoanCustomizeMarginCallResponse
impl UnwindSafe for LoanCustomizeMarginCallResponse
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