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