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