pub struct LMLiquidationRecord {
pub base_coin: Option<String>,
pub quote_coin: Option<String>,
pub base_amount: Option<String>,
pub quote_amount: Option<String>,
pub liquidation_price: Option<String>,
pub liquidation_time: Option<String>,
}Fields§
§base_coin: Option<String>§quote_coin: Option<String>§base_amount: Option<String>§quote_amount: Option<String>§liquidation_price: Option<String>§liquidation_time: Option<String>Trait Implementations§
Source§impl Clone for LMLiquidationRecord
impl Clone for LMLiquidationRecord
Source§fn clone(&self) -> LMLiquidationRecord
fn clone(&self) -> LMLiquidationRecord
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 LMLiquidationRecord
impl Debug for LMLiquidationRecord
Source§impl<'de> Deserialize<'de> for LMLiquidationRecord
impl<'de> Deserialize<'de> for LMLiquidationRecord
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 LMLiquidationRecord
impl RefUnwindSafe for LMLiquidationRecord
impl Send for LMLiquidationRecord
impl Sync for LMLiquidationRecord
impl Unpin for LMLiquidationRecord
impl UnsafeUnpin for LMLiquidationRecord
impl UnwindSafe for LMLiquidationRecord
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