pub struct LoanVipRequestInterestRateResponseItem {
pub asset: String,
pub flexible_daily_interest_rate: String,
pub flexible_yearly_interest_rate: String,
pub time: i64,
}
Expand description
LoanVipRequestInterestRateResponseItem
JSON schema
{
"type": "object",
"required": [
"asset",
"flexibleDailyInterestRate",
"flexibleYearlyInterestRate",
"time"
],
"properties": {
"asset": {
"examples": [
"BUSD"
],
"type": "string"
},
"flexibleDailyInterestRate": {
"examples": [
"0.001503"
],
"type": "string"
},
"flexibleYearlyInterestRate": {
"examples": [
"0.548595"
],
"type": "string"
},
"time": {
"examples": [
1577233578000
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§asset: String
§flexible_daily_interest_rate: String
§flexible_yearly_interest_rate: String
§time: i64
Trait Implementations§
Source§impl Clone for LoanVipRequestInterestRateResponseItem
impl Clone for LoanVipRequestInterestRateResponseItem
Source§fn clone(&self) -> LoanVipRequestInterestRateResponseItem
fn clone(&self) -> LoanVipRequestInterestRateResponseItem
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 LoanVipRequestInterestRateResponseItem
impl<'de> Deserialize<'de> for LoanVipRequestInterestRateResponseItem
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<&LoanVipRequestInterestRateResponseItem> for LoanVipRequestInterestRateResponseItem
impl From<&LoanVipRequestInterestRateResponseItem> for LoanVipRequestInterestRateResponseItem
Source§fn from(value: &LoanVipRequestInterestRateResponseItem) -> Self
fn from(value: &LoanVipRequestInterestRateResponseItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanVipRequestInterestRateResponseItem
impl RefUnwindSafe for LoanVipRequestInterestRateResponseItem
impl Send for LoanVipRequestInterestRateResponseItem
impl Sync for LoanVipRequestInterestRateResponseItem
impl Unpin for LoanVipRequestInterestRateResponseItem
impl UnwindSafe for LoanVipRequestInterestRateResponseItem
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