pub struct LiabilityQty {
pub list: Vec<LiabilityQtyData>,
}Expand description
Summarizes repayment quantities for borrowed liabilities.
Part of the RepayLiabilityResponse, this struct contains a list of repayment details for each currency. Bots use this to confirm the amounts repaid and update account status.
Fields§
§list: Vec<LiabilityQtyData>A list of repayment records.
Contains details of the repaid amounts for each currency. Bots use this to verify repayment completion and update liability tracking.
Trait Implementations§
Source§impl Clone for LiabilityQty
impl Clone for LiabilityQty
Source§fn clone(&self) -> LiabilityQty
fn clone(&self) -> LiabilityQty
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 Debug for LiabilityQty
impl Debug for LiabilityQty
Source§impl<'de> Deserialize<'de> for LiabilityQty
impl<'de> Deserialize<'de> for LiabilityQty
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 LiabilityQty
impl RefUnwindSafe for LiabilityQty
impl Send for LiabilityQty
impl Sync for LiabilityQty
impl Unpin for LiabilityQty
impl UnsafeUnpin for LiabilityQty
impl UnwindSafe for LiabilityQty
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