pub struct BorrowItem {
pub loan_currency: Option<String>,
pub flexible_total_debt: Option<String>,
pub flexible_total_debt_usd: Option<String>,
pub flexible_hourly_interest_rate: Option<String>,
pub fixed_total_debt: Option<String>,
pub fixed_total_debt_usd: Option<String>,
}Fields§
§loan_currency: Option<String>§flexible_total_debt: Option<String>§flexible_total_debt_usd: Option<String>§flexible_hourly_interest_rate: Option<String>§fixed_total_debt: Option<String>§fixed_total_debt_usd: Option<String>Trait Implementations§
Source§impl Clone for BorrowItem
impl Clone for BorrowItem
Source§fn clone(&self) -> BorrowItem
fn clone(&self) -> BorrowItem
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 BorrowItem
impl Debug for BorrowItem
Source§impl<'de> Deserialize<'de> for BorrowItem
impl<'de> Deserialize<'de> for BorrowItem
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 BorrowItem
impl RefUnwindSafe for BorrowItem
impl Send for BorrowItem
impl Sync for BorrowItem
impl Unpin for BorrowItem
impl UnsafeUnpin for BorrowItem
impl UnwindSafe for BorrowItem
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