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