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