#[repr(u32)]pub enum BackendHealth {
Unknown = 0,
Healthy = 1,
Unhealthy = 2,
}Variants§
Trait Implementations§
Source§impl Clone for BackendHealth
impl Clone for BackendHealth
Source§fn clone(&self) -> BackendHealth
fn clone(&self) -> BackendHealth
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BackendHealth
Source§impl Debug for BackendHealth
impl Debug for BackendHealth
impl Eq for BackendHealth
Source§impl PartialEq for BackendHealth
impl PartialEq for BackendHealth
Source§fn eq(&self, other: &BackendHealth) -> bool
fn eq(&self, other: &BackendHealth) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BackendHealth
Auto Trait Implementations§
impl Freeze for BackendHealth
impl RefUnwindSafe for BackendHealth
impl Send for BackendHealth
impl Sync for BackendHealth
impl Unpin for BackendHealth
impl UnsafeUnpin for BackendHealth
impl UnwindSafe for BackendHealth
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