pub struct LoanCustomizeMarginCallResponseRowsItem {
pub after_margin_call: String,
pub collateral_coin: String,
pub customize_time: i64,
pub order_id: String,
pub pre_margin_call: String,
}
Expand description
LoanCustomizeMarginCallResponseRowsItem
JSON schema
{
"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"
}
}
}
Fields§
§after_margin_call: String
§collateral_coin: String
§customize_time: i64
§order_id: String
§pre_margin_call: String
Trait Implementations§
Source§impl Clone for LoanCustomizeMarginCallResponseRowsItem
impl Clone for LoanCustomizeMarginCallResponseRowsItem
Source§fn clone(&self) -> LoanCustomizeMarginCallResponseRowsItem
fn clone(&self) -> LoanCustomizeMarginCallResponseRowsItem
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 LoanCustomizeMarginCallResponseRowsItem
impl<'de> Deserialize<'de> for LoanCustomizeMarginCallResponseRowsItem
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<&LoanCustomizeMarginCallResponseRowsItem> for LoanCustomizeMarginCallResponseRowsItem
impl From<&LoanCustomizeMarginCallResponseRowsItem> for LoanCustomizeMarginCallResponseRowsItem
Source§fn from(value: &LoanCustomizeMarginCallResponseRowsItem) -> Self
fn from(value: &LoanCustomizeMarginCallResponseRowsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanCustomizeMarginCallResponseRowsItem
impl RefUnwindSafe for LoanCustomizeMarginCallResponseRowsItem
impl Send for LoanCustomizeMarginCallResponseRowsItem
impl Sync for LoanCustomizeMarginCallResponseRowsItem
impl Unpin for LoanCustomizeMarginCallResponseRowsItem
impl UnwindSafe for LoanCustomizeMarginCallResponseRowsItem
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