pub struct EarnOrder {
pub coin: Option<String>,
pub order_value: Option<String>,
pub order_type: Option<String>,
pub order_id: Option<String>,
pub order_link_id: Option<String>,
pub status: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub product_id: Option<String>,
pub swap_order_value: Option<String>,
pub estimate_redeem_time: Option<String>,
pub estimate_stake_time: Option<String>,
}Fields§
§coin: Option<String>§order_value: Option<String>§order_type: Option<String>§order_id: Option<String>§order_link_id: Option<String>§status: Option<String>§created_at: Option<String>§updated_at: Option<String>§product_id: Option<String>§swap_order_value: Option<String>§estimate_redeem_time: Option<String>§estimate_stake_time: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for EarnOrder
impl<'de> Deserialize<'de> for EarnOrder
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 EarnOrder
impl RefUnwindSafe for EarnOrder
impl Send for EarnOrder
impl Sync for EarnOrder
impl Unpin for EarnOrder
impl UnsafeUnpin for EarnOrder
impl UnwindSafe for EarnOrder
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