pub enum ManagerState {
Stopped,
Starting,
Running,
Failover,
Stopping,
}Expand description
Mesh manager state
Variants§
Stopped
Not started
Starting
Starting up
Running
Running and managing topology
Failover
In parent failover mode
Stopping
Stopping
Trait Implementations§
Source§impl Clone for ManagerState
impl Clone for ManagerState
Source§fn clone(&self) -> ManagerState
fn clone(&self) -> ManagerState
Returns a duplicate of the value. Read more
1.0.0 · 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 ManagerState
impl Debug for ManagerState
Source§impl Default for ManagerState
impl Default for ManagerState
Source§fn default() -> ManagerState
fn default() -> ManagerState
Returns the “default value” for a type. Read more
Source§impl PartialEq for ManagerState
impl PartialEq for ManagerState
impl Copy for ManagerState
impl Eq for ManagerState
impl StructuralPartialEq for ManagerState
Auto Trait Implementations§
impl Freeze for ManagerState
impl RefUnwindSafe for ManagerState
impl Send for ManagerState
impl Sync for ManagerState
impl Unpin for ManagerState
impl UnwindSafe for ManagerState
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