pub enum GetHealthStatusError {
Status503(HealthResponse),
UnknownValue(Value),
}Expand description
struct for typed errors of method get_health_status
Variants§
Status503(HealthResponse)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for GetHealthStatusError
impl Clone for GetHealthStatusError
Source§fn clone(&self) -> GetHealthStatusError
fn clone(&self) -> GetHealthStatusError
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 GetHealthStatusError
impl Debug for GetHealthStatusError
Source§impl<'de> Deserialize<'de> for GetHealthStatusError
impl<'de> Deserialize<'de> for GetHealthStatusError
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 GetHealthStatusError
impl RefUnwindSafe for GetHealthStatusError
impl Send for GetHealthStatusError
impl Sync for GetHealthStatusError
impl Unpin for GetHealthStatusError
impl UnwindSafe for GetHealthStatusError
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