#[non_exhaustive]pub struct LoanRecord {
pub avail_loan: String,
pub avg_rate: String,
pub ccy: String,
pub interest: NumberString,
pub loan_quota: NumberString,
pub pos_loan: String,
pub rate: NumberString,
pub surplus_lmt: NumberString,
pub used_lmt: NumberString,
pub used_loan: String,
pub interest_free_liab: String,
pub potential_borrowing_amt: String,
}Expand description
Per-currency loan record nested in InterestLimit.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.avail_loan: StringAvailable loan amount.
avg_rate: StringAverage borrow rate.
ccy: StringCurrency.
interest: NumberStringAccrued interest.
loan_quota: NumberStringTotal loan quota.
pos_loan: StringPosition loan.
rate: NumberStringCurrent borrow rate.
surplus_lmt: NumberStringRemaining loan limit.
used_lmt: NumberStringUsed loan limit.
used_loan: StringUsed loan amount.
interest_free_liab: StringInterest-free liability.
potential_borrowing_amt: StringPotential borrowing amount.
Trait Implementations§
Source§impl Clone for LoanRecord
impl Clone for LoanRecord
Source§fn clone(&self) -> LoanRecord
fn clone(&self) -> LoanRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LoanRecord
impl Debug for LoanRecord
Source§impl<'de> Deserialize<'de> for LoanRecord
impl<'de> Deserialize<'de> for LoanRecord
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
Auto Trait Implementations§
impl Freeze for LoanRecord
impl RefUnwindSafe for LoanRecord
impl Send for LoanRecord
impl Sync for LoanRecord
impl Unpin for LoanRecord
impl UnsafeUnpin for LoanRecord
impl UnwindSafe for LoanRecord
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