pub struct GetOrderDetailResponse {
pub code: Option<String>,
pub message: Option<String>,
pub data: Option<Box<GetOrderDetailResponseData>>,
}Fields§
§code: Option<String>§message: Option<String>§data: Option<Box<GetOrderDetailResponseData>>Implementations§
Source§impl GetOrderDetailResponse
impl GetOrderDetailResponse
pub fn new() -> GetOrderDetailResponse
Trait Implementations§
Source§impl Clone for GetOrderDetailResponse
impl Clone for GetOrderDetailResponse
Source§fn clone(&self) -> GetOrderDetailResponse
fn clone(&self) -> GetOrderDetailResponse
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 GetOrderDetailResponse
impl Debug for GetOrderDetailResponse
Source§impl Default for GetOrderDetailResponse
impl Default for GetOrderDetailResponse
Source§fn default() -> GetOrderDetailResponse
fn default() -> GetOrderDetailResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetOrderDetailResponse
impl<'de> Deserialize<'de> for GetOrderDetailResponse
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
Source§impl PartialEq for GetOrderDetailResponse
impl PartialEq for GetOrderDetailResponse
Source§fn eq(&self, other: &GetOrderDetailResponse) -> bool
fn eq(&self, other: &GetOrderDetailResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GetOrderDetailResponse
impl Serialize for GetOrderDetailResponse
impl StructuralPartialEq for GetOrderDetailResponse
Auto Trait Implementations§
impl Freeze for GetOrderDetailResponse
impl RefUnwindSafe for GetOrderDetailResponse
impl Send for GetOrderDetailResponse
impl Sync for GetOrderDetailResponse
impl Unpin for GetOrderDetailResponse
impl UnsafeUnpin for GetOrderDetailResponse
impl UnwindSafe for GetOrderDetailResponse
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