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