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