pub enum RunnerState {
Booting,
Healthy,
Unhealthy {
since: Instant,
reason: String,
},
Failed {
reason: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for RunnerState
impl Clone for RunnerState
Source§fn clone(&self) -> RunnerState
fn clone(&self) -> RunnerState
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 moreAuto Trait Implementations§
impl Freeze for RunnerState
impl RefUnwindSafe for RunnerState
impl Send for RunnerState
impl Sync for RunnerState
impl Unpin for RunnerState
impl UnsafeUnpin for RunnerState
impl UnwindSafe for RunnerState
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