pub enum AdapterHealth {
Starting,
Healthy,
Unhealthy,
Dead,
}Expand description
Adapter health state
Variants§
Starting
Initial state after spawn, waiting for health check
Healthy
Adapter is healthy and responding
Unhealthy
Adapter failed to respond to health check
Dead
Adapter process has exited
Trait Implementations§
Source§impl Clone for AdapterHealth
impl Clone for AdapterHealth
Source§fn clone(&self) -> AdapterHealth
fn clone(&self) -> AdapterHealth
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 AdapterHealth
impl Debug for AdapterHealth
Source§impl PartialEq for AdapterHealth
impl PartialEq for AdapterHealth
impl Copy for AdapterHealth
impl Eq for AdapterHealth
impl StructuralPartialEq for AdapterHealth
Auto Trait Implementations§
impl Freeze for AdapterHealth
impl RefUnwindSafe for AdapterHealth
impl Send for AdapterHealth
impl Sync for AdapterHealth
impl Unpin for AdapterHealth
impl UnsafeUnpin for AdapterHealth
impl UnwindSafe for AdapterHealth
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