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