pub struct FixedTermOrder {
pub order_id: Option<String>,
pub order_link_id: Option<String>,
pub product_id: Option<String>,
pub category: Option<String>,
pub coin: Option<String>,
pub amount: Option<String>,
pub order_type: Option<String>,
pub status: Option<String>,
pub created_time: Option<String>,
pub updated_time: Option<String>,
}Fields§
§order_id: Option<String>§order_link_id: Option<String>§product_id: Option<String>§category: Option<String>§coin: Option<String>§amount: Option<String>§order_type: Option<String>§status: Option<String>§created_time: Option<String>§updated_time: Option<String>Trait Implementations§
Source§impl Clone for FixedTermOrder
impl Clone for FixedTermOrder
Source§fn clone(&self) -> FixedTermOrder
fn clone(&self) -> FixedTermOrder
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 FixedTermOrder
impl Debug for FixedTermOrder
Source§impl<'de> Deserialize<'de> for FixedTermOrder
impl<'de> Deserialize<'de> for FixedTermOrder
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 FixedTermOrder
impl RefUnwindSafe for FixedTermOrder
impl Send for FixedTermOrder
impl Sync for FixedTermOrder
impl Unpin for FixedTermOrder
impl UnsafeUnpin for FixedTermOrder
impl UnwindSafe for FixedTermOrder
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