pub struct LendHistory {
pub trade_id: String,
pub currency: String,
pub size: String,
pub interest: String,
pub repaid: String,
pub daily_int_rate: String,
pub term: i32,
pub settled_at: i64,
pub note: String,
}Fields§
§trade_id: String§currency: String§size: String§interest: String§repaid: String§daily_int_rate: String§term: i32§settled_at: i64§note: StringTrait Implementations§
Source§impl Debug for LendHistory
impl Debug for LendHistory
Source§impl<'de> Deserialize<'de> for LendHistory
impl<'de> Deserialize<'de> for LendHistory
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 LendHistory
impl RefUnwindSafe for LendHistory
impl Send for LendHistory
impl Sync for LendHistory
impl Unpin for LendHistory
impl UnsafeUnpin for LendHistory
impl UnwindSafe for LendHistory
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