pub struct LoanCollateralDataResponseRowsItem {
pub collateral_coin: String,
pub initial_ltv: String,
pub liquidation_ltv: String,
pub margin_call_ltv: String,
pub max_limit: String,
pub vip_level: i32,
}
Expand description
LoanCollateralDataResponseRowsItem
JSON schema
{
"type": "object",
"required": [
"collateralCoin",
"initialLTV",
"liquidationLTV",
"marginCallLTV",
"maxLimit",
"vipLevel"
],
"properties": {
"collateralCoin": {
"examples": [
"BNB"
],
"type": "string"
},
"initialLTV": {
"examples": [
"0.65"
],
"type": "string"
},
"liquidationLTV": {
"examples": [
"0.83"
],
"type": "string"
},
"marginCallLTV": {
"examples": [
"0.75"
],
"type": "string"
},
"maxLimit": {
"examples": [
"1000000"
],
"type": "string"
},
"vipLevel": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§collateral_coin: String
§initial_ltv: String
§liquidation_ltv: String
§margin_call_ltv: String
§max_limit: String
§vip_level: i32
Trait Implementations§
Source§impl Clone for LoanCollateralDataResponseRowsItem
impl Clone for LoanCollateralDataResponseRowsItem
Source§fn clone(&self) -> LoanCollateralDataResponseRowsItem
fn clone(&self) -> LoanCollateralDataResponseRowsItem
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 LoanCollateralDataResponseRowsItem
impl<'de> Deserialize<'de> for LoanCollateralDataResponseRowsItem
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<&LoanCollateralDataResponseRowsItem> for LoanCollateralDataResponseRowsItem
impl From<&LoanCollateralDataResponseRowsItem> for LoanCollateralDataResponseRowsItem
Source§fn from(value: &LoanCollateralDataResponseRowsItem) -> Self
fn from(value: &LoanCollateralDataResponseRowsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanCollateralDataResponseRowsItem
impl RefUnwindSafe for LoanCollateralDataResponseRowsItem
impl Send for LoanCollateralDataResponseRowsItem
impl Sync for LoanCollateralDataResponseRowsItem
impl Unpin for LoanCollateralDataResponseRowsItem
impl UnwindSafe for LoanCollateralDataResponseRowsItem
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