pub enum LifecycleState {
Created,
Configured,
Active,
Passive,
Removed,
}Expand description
Lifecycle-State eines Component-Executor.
Variants§
Created
Erstellt, aber noch nicht initialisiert.
Configured
set_*_context aufgerufen, vor ccm_activate.
Active
ccm_activate aufgerufen.
Passive
ccm_passivate aufgerufen.
Removed
ccm_remove aufgerufen — terminal.
Trait Implementations§
Source§impl Clone for LifecycleState
impl Clone for LifecycleState
Source§fn clone(&self) -> LifecycleState
fn clone(&self) -> LifecycleState
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 LifecycleState
impl Debug for LifecycleState
Source§impl Hash for LifecycleState
impl Hash for LifecycleState
Source§impl PartialEq for LifecycleState
impl PartialEq for LifecycleState
Source§fn eq(&self, other: &LifecycleState) -> bool
fn eq(&self, other: &LifecycleState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LifecycleState
impl Eq for LifecycleState
impl StructuralPartialEq for LifecycleState
Auto Trait Implementations§
impl Freeze for LifecycleState
impl RefUnwindSafe for LifecycleState
impl Send for LifecycleState
impl Sync for LifecycleState
impl Unpin for LifecycleState
impl UnsafeUnpin for LifecycleState
impl UnwindSafe for LifecycleState
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