pub struct BorrowHistoryItem {
pub currency: Option<String>,
pub created_time: Option<i64>,
pub borrow_cost: Option<String>,
pub hourly_borrow_rate: Option<String>,
pub interest_bearing_borrow_size: Option<String>,
pub cost_exemption: Option<String>,
pub borrow_amount: Option<String>,
pub unrealised_loss: Option<String>,
pub free_borrowed_amount: Option<String>,
}Fields§
§currency: Option<String>§created_time: Option<i64>§borrow_cost: Option<String>§hourly_borrow_rate: Option<String>§interest_bearing_borrow_size: Option<String>§cost_exemption: Option<String>§borrow_amount: Option<String>§unrealised_loss: Option<String>§free_borrowed_amount: Option<String>Trait Implementations§
Source§impl Clone for BorrowHistoryItem
impl Clone for BorrowHistoryItem
Source§fn clone(&self) -> BorrowHistoryItem
fn clone(&self) -> BorrowHistoryItem
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 BorrowHistoryItem
impl Debug for BorrowHistoryItem
Source§impl<'de> Deserialize<'de> for BorrowHistoryItem
impl<'de> Deserialize<'de> for BorrowHistoryItem
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 BorrowHistoryItem
impl RefUnwindSafe for BorrowHistoryItem
impl Send for BorrowHistoryItem
impl Sync for BorrowHistoryItem
impl Unpin for BorrowHistoryItem
impl UnsafeUnpin for BorrowHistoryItem
impl UnwindSafe for BorrowHistoryItem
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