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