pub struct LoanFlexibleLoanableDataResponse {
pub rows: Vec<LoanFlexibleLoanableDataResponseRowsItem>,
pub total: i32,
}
Expand description
LoanFlexibleLoanableDataResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"flexibleInterestRate",
"flexibleMaxLimit",
"flexibleMinLimit",
"loanCoin"
],
"properties": {
"flexibleInterestRate": {
"examples": [
"0.01"
],
"type": "string"
},
"flexibleMaxLimit": {
"examples": [
"1000000"
],
"type": "string"
},
"flexibleMinLimit": {
"examples": [
"100"
],
"type": "string"
},
"loanCoin": {
"examples": [
"BNB"
],
"type": "string"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§rows: Vec<LoanFlexibleLoanableDataResponseRowsItem>
§total: i32
Trait Implementations§
Source§impl Clone for LoanFlexibleLoanableDataResponse
impl Clone for LoanFlexibleLoanableDataResponse
Source§fn clone(&self) -> LoanFlexibleLoanableDataResponse
fn clone(&self) -> LoanFlexibleLoanableDataResponse
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 LoanFlexibleLoanableDataResponse
impl<'de> Deserialize<'de> for LoanFlexibleLoanableDataResponse
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<&LoanFlexibleLoanableDataResponse> for LoanFlexibleLoanableDataResponse
impl From<&LoanFlexibleLoanableDataResponse> for LoanFlexibleLoanableDataResponse
Source§fn from(value: &LoanFlexibleLoanableDataResponse) -> Self
fn from(value: &LoanFlexibleLoanableDataResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanFlexibleLoanableDataResponse
impl RefUnwindSafe for LoanFlexibleLoanableDataResponse
impl Send for LoanFlexibleLoanableDataResponse
impl Sync for LoanFlexibleLoanableDataResponse
impl Unpin for LoanFlexibleLoanableDataResponse
impl UnwindSafe for LoanFlexibleLoanableDataResponse
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