pub struct YieldRecord {
pub product_id: Option<String>,
pub coin: Option<String>,
pub id: Option<String>,
pub amount: Option<String>,
pub yield_type: Option<String>,
pub distribution_mode: Option<String>,
pub effective_staking_amount: Option<String>,
pub order_id: Option<String>,
pub status: Option<String>,
pub created_at: Option<String>,
}Fields§
§product_id: Option<String>§coin: Option<String>§id: Option<String>§amount: Option<String>§yield_type: Option<String>§distribution_mode: Option<String>§effective_staking_amount: Option<String>§order_id: Option<String>§status: Option<String>§created_at: Option<String>Trait Implementations§
Source§impl Clone for YieldRecord
impl Clone for YieldRecord
Source§fn clone(&self) -> YieldRecord
fn clone(&self) -> YieldRecord
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 YieldRecord
impl Debug for YieldRecord
Source§impl<'de> Deserialize<'de> for YieldRecord
impl<'de> Deserialize<'de> for YieldRecord
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 YieldRecord
impl RefUnwindSafe for YieldRecord
impl Send for YieldRecord
impl Sync for YieldRecord
impl Unpin for YieldRecord
impl UnsafeUnpin for YieldRecord
impl UnwindSafe for YieldRecord
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