pub enum RuntimePhase {
Starting,
Ready,
Retrying,
Restarting,
Failed,
Corrupted,
Stopping,
Stopped,
}Variants§
Trait Implementations§
Source§impl Clone for RuntimePhase
impl Clone for RuntimePhase
Source§fn clone(&self) -> RuntimePhase
fn clone(&self) -> RuntimePhase
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 moreSource§impl Debug for RuntimePhase
impl Debug for RuntimePhase
Source§impl<'de> Deserialize<'de> for RuntimePhase
impl<'de> Deserialize<'de> for RuntimePhase
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
impl Eq for RuntimePhase
Source§impl PartialEq for RuntimePhase
impl PartialEq for RuntimePhase
Source§impl Serialize for RuntimePhase
impl Serialize for RuntimePhase
impl StructuralPartialEq for RuntimePhase
Auto Trait Implementations§
impl Freeze for RuntimePhase
impl RefUnwindSafe for RuntimePhase
impl Send for RuntimePhase
impl Sync for RuntimePhase
impl Unpin for RuntimePhase
impl UnsafeUnpin for RuntimePhase
impl UnwindSafe for RuntimePhase
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