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