pub struct LoanVipCollateralAccountResponseRowsItem {
pub collateral_account_id: String,
pub collateral_coin: String,
pub collateral_value: String,
}
Expand description
LoanVipCollateralAccountResponseRowsItem
JSON schema
{
"type": "object",
"required": [
"collateralAccountId",
"collateralCoin",
"collateralValue"
],
"properties": {
"collateralAccountId": {
"examples": [
"12345678"
],
"type": "string"
},
"collateralCoin": {
"examples": [
"BNB,BTC,ETH"
],
"type": "string"
},
"collateralValue": {
"description": "locked collateral value shown in USD value",
"examples": [
"500.27565492"
],
"type": "string"
}
}
}
Fields§
§collateral_account_id: String
§collateral_coin: String
§collateral_value: String
locked collateral value shown in USD value
Trait Implementations§
Source§impl Clone for LoanVipCollateralAccountResponseRowsItem
impl Clone for LoanVipCollateralAccountResponseRowsItem
Source§fn clone(&self) -> LoanVipCollateralAccountResponseRowsItem
fn clone(&self) -> LoanVipCollateralAccountResponseRowsItem
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 LoanVipCollateralAccountResponseRowsItem
impl<'de> Deserialize<'de> for LoanVipCollateralAccountResponseRowsItem
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<&LoanVipCollateralAccountResponseRowsItem> for LoanVipCollateralAccountResponseRowsItem
impl From<&LoanVipCollateralAccountResponseRowsItem> for LoanVipCollateralAccountResponseRowsItem
Source§fn from(value: &LoanVipCollateralAccountResponseRowsItem) -> Self
fn from(value: &LoanVipCollateralAccountResponseRowsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanVipCollateralAccountResponseRowsItem
impl RefUnwindSafe for LoanVipCollateralAccountResponseRowsItem
impl Send for LoanVipCollateralAccountResponseRowsItem
impl Sync for LoanVipCollateralAccountResponseRowsItem
impl Unpin for LoanVipCollateralAccountResponseRowsItem
impl UnwindSafe for LoanVipCollateralAccountResponseRowsItem
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