pub enum ModuleStatus {
Starting,
Running,
Stopping,
Stopped,
Error,
}Expand description
Module status
Variants§
Trait Implementations§
Source§impl Clone for ModuleStatus
impl Clone for ModuleStatus
Source§fn clone(&self) -> ModuleStatus
fn clone(&self) -> ModuleStatus
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 ModuleStatus
impl Debug for ModuleStatus
Source§impl<'de> Deserialize<'de> for ModuleStatus
impl<'de> Deserialize<'de> for ModuleStatus
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
Source§impl PartialEq for ModuleStatus
impl PartialEq for ModuleStatus
Source§fn eq(&self, other: &ModuleStatus) -> bool
fn eq(&self, other: &ModuleStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ModuleStatus
impl Serialize for ModuleStatus
impl Copy for ModuleStatus
impl Eq for ModuleStatus
impl StructuralPartialEq for ModuleStatus
Auto Trait Implementations§
impl Freeze for ModuleStatus
impl RefUnwindSafe for ModuleStatus
impl Send for ModuleStatus
impl Sync for ModuleStatus
impl Unpin for ModuleStatus
impl UnsafeUnpin for ModuleStatus
impl UnwindSafe for ModuleStatus
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