pub struct GetTrackingInformationResponse {
pub payload: Option<Box<TrackingInformation>>,
pub errors: Option<Vec<Error>>,
}Expand description
GetTrackingInformationResponse : The response schema for the getTrackingInformation operation.
Fields§
§payload: Option<Box<TrackingInformation>>§errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl GetTrackingInformationResponse
impl GetTrackingInformationResponse
Sourcepub fn new() -> GetTrackingInformationResponse
pub fn new() -> GetTrackingInformationResponse
The response schema for the getTrackingInformation operation.
Trait Implementations§
Source§impl Clone for GetTrackingInformationResponse
impl Clone for GetTrackingInformationResponse
Source§fn clone(&self) -> GetTrackingInformationResponse
fn clone(&self) -> GetTrackingInformationResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GetTrackingInformationResponse
impl Default for GetTrackingInformationResponse
Source§fn default() -> GetTrackingInformationResponse
fn default() -> GetTrackingInformationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetTrackingInformationResponse
impl<'de> Deserialize<'de> for GetTrackingInformationResponse
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 GetTrackingInformationResponse
impl PartialEq for GetTrackingInformationResponse
Source§fn eq(&self, other: &GetTrackingInformationResponse) -> bool
fn eq(&self, other: &GetTrackingInformationResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetTrackingInformationResponse
Auto Trait Implementations§
impl Freeze for GetTrackingInformationResponse
impl RefUnwindSafe for GetTrackingInformationResponse
impl Send for GetTrackingInformationResponse
impl Sync for GetTrackingInformationResponse
impl Unpin for GetTrackingInformationResponse
impl UnwindSafe for GetTrackingInformationResponse
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