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