pub struct LMYieldRecord {
pub product_id: String,
pub position_id: String,
pub base_coin: String,
pub quote_coin: String,
pub coin: String,
pub amount: String,
pub status: String,
pub created_time: i64,
}Fields§
§product_id: String§position_id: String§base_coin: String§quote_coin: String§coin: String§amount: String§status: String§created_time: i64Trait Implementations§
Source§impl Clone for LMYieldRecord
impl Clone for LMYieldRecord
Source§fn clone(&self) -> LMYieldRecord
fn clone(&self) -> LMYieldRecord
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 LMYieldRecord
impl Debug for LMYieldRecord
Source§impl<'de> Deserialize<'de> for LMYieldRecord
impl<'de> Deserialize<'de> for LMYieldRecord
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 LMYieldRecord
impl RefUnwindSafe for LMYieldRecord
impl Send for LMYieldRecord
impl Sync for LMYieldRecord
impl Unpin for LMYieldRecord
impl UnsafeUnpin for LMYieldRecord
impl UnwindSafe for LMYieldRecord
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