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