pub enum GetTrackingInformationError {
Status400(GetTrackingInformationResponse),
Status401(GetTrackingInformationResponse),
Status403(GetTrackingInformationResponse),
Status404(GetTrackingInformationResponse),
Status429(GetTrackingInformationResponse),
Status500(GetTrackingInformationResponse),
Status503(GetTrackingInformationResponse),
UnknownValue(Value),
}Expand description
struct for typed errors of method get_tracking_information
Variants§
Status400(GetTrackingInformationResponse)
Status401(GetTrackingInformationResponse)
Status403(GetTrackingInformationResponse)
Status404(GetTrackingInformationResponse)
Status429(GetTrackingInformationResponse)
Status500(GetTrackingInformationResponse)
Status503(GetTrackingInformationResponse)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for GetTrackingInformationError
impl Clone for GetTrackingInformationError
Source§fn clone(&self) -> GetTrackingInformationError
fn clone(&self) -> GetTrackingInformationError
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 Debug for GetTrackingInformationError
impl Debug for GetTrackingInformationError
Source§impl<'de> Deserialize<'de> for GetTrackingInformationError
impl<'de> Deserialize<'de> for GetTrackingInformationError
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 GetTrackingInformationError
impl RefUnwindSafe for GetTrackingInformationError
impl Send for GetTrackingInformationError
impl Sync for GetTrackingInformationError
impl Unpin for GetTrackingInformationError
impl UnwindSafe for GetTrackingInformationError
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