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