pub enum GetOrderApiError {
Status400(GetOrderResponse400),
}Expand description
Typed error responses for GetOrder. One variant per declared non-2xx response.
Variants§
Status400(GetOrderResponse400)
Trait Implementations§
Source§impl Clone for GetOrderApiError
impl Clone for GetOrderApiError
Source§fn clone(&self) -> GetOrderApiError
fn clone(&self) -> GetOrderApiError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GetOrderApiError
impl RefUnwindSafe for GetOrderApiError
impl Send for GetOrderApiError
impl Sync for GetOrderApiError
impl Unpin for GetOrderApiError
impl UnsafeUnpin for GetOrderApiError
impl UnwindSafe for GetOrderApiError
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