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