pub struct AgreementOrderInfo {
pub order_title: String,
pub order_desc: Option<String>,
pub goods_name: Option<String>,
pub goods_id: Option<String>,
pub goods_category: Option<String>,
}Fields§
§order_title: String§order_desc: Option<String>§goods_name: Option<String>§goods_id: Option<String>§goods_category: Option<String>Trait Implementations§
Source§impl Clone for AgreementOrderInfo
impl Clone for AgreementOrderInfo
Source§fn clone(&self) -> AgreementOrderInfo
fn clone(&self) -> AgreementOrderInfo
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 AgreementOrderInfo
impl Debug for AgreementOrderInfo
Source§impl<'de> Deserialize<'de> for AgreementOrderInfo
impl<'de> Deserialize<'de> for AgreementOrderInfo
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 AgreementOrderInfo
impl RefUnwindSafe for AgreementOrderInfo
impl Send for AgreementOrderInfo
impl Sync for AgreementOrderInfo
impl Unpin for AgreementOrderInfo
impl UnsafeUnpin for AgreementOrderInfo
impl UnwindSafe for AgreementOrderInfo
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