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