pub enum CapabilityLifecycle {
Installed,
Active,
Deprecated,
Disabled,
Unavailable,
EmergencyRevoked,
}Expand description
Deployment state of a capability provider.
Variants§
Installed
Registered but not yet serving.
Active
Serving new and existing work.
Deprecated
Serving pinned work only; new pins rejected.
Disabled
Not serving; pinned work waits.
Temporarily unreachable.
EmergencyRevoked
Blocks every action immediately.
Trait Implementations§
Source§impl Clone for CapabilityLifecycle
impl Clone for CapabilityLifecycle
Source§fn clone(&self) -> CapabilityLifecycle
fn clone(&self) -> CapabilityLifecycle
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 moreimpl Copy for CapabilityLifecycle
Source§impl Debug for CapabilityLifecycle
impl Debug for CapabilityLifecycle
Source§impl<'de> Deserialize<'de> for CapabilityLifecycle
impl<'de> Deserialize<'de> for CapabilityLifecycle
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 CapabilityLifecycle
Source§impl PartialEq for CapabilityLifecycle
impl PartialEq for CapabilityLifecycle
Source§impl Serialize for CapabilityLifecycle
impl Serialize for CapabilityLifecycle
impl StructuralPartialEq for CapabilityLifecycle
Auto Trait Implementations§
impl Freeze for CapabilityLifecycle
impl RefUnwindSafe for CapabilityLifecycle
impl Send for CapabilityLifecycle
impl Sync for CapabilityLifecycle
impl Unpin for CapabilityLifecycle
impl UnsafeUnpin for CapabilityLifecycle
impl UnwindSafe for CapabilityLifecycle
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