pub struct AdjustmentHistoryItem {
pub collateral_currency: Option<String>,
pub adjust_id: Option<i64>,
pub adjust_time: Option<i64>,
pub pre_ltv: Option<String>,
pub after_ltv: Option<String>,
pub direction: Option<i32>,
pub amount: Option<String>,
pub status: Option<i32>,
}Fields§
§collateral_currency: Option<String>§adjust_id: Option<i64>§adjust_time: Option<i64>§pre_ltv: Option<String>§after_ltv: Option<String>§direction: Option<i32>§amount: Option<String>§status: Option<i32>Trait Implementations§
Source§impl Clone for AdjustmentHistoryItem
impl Clone for AdjustmentHistoryItem
Source§fn clone(&self) -> AdjustmentHistoryItem
fn clone(&self) -> AdjustmentHistoryItem
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 AdjustmentHistoryItem
impl Debug for AdjustmentHistoryItem
Source§impl<'de> Deserialize<'de> for AdjustmentHistoryItem
impl<'de> Deserialize<'de> for AdjustmentHistoryItem
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 AdjustmentHistoryItem
impl RefUnwindSafe for AdjustmentHistoryItem
impl Send for AdjustmentHistoryItem
impl Sync for AdjustmentHistoryItem
impl Unpin for AdjustmentHistoryItem
impl UnsafeUnpin for AdjustmentHistoryItem
impl UnwindSafe for AdjustmentHistoryItem
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