pub enum PluginStatus {
Enabled,
Disabled,
Degraded,
Error,
}Variants§
Enabled
Plugin is enabled and all components are active.
Disabled
Plugin is installed but disabled.
Degraded
Plugin is enabled but some components failed to load.
Error
Plugin failed to load entirely.
Trait Implementations§
Source§impl Clone for PluginStatus
impl Clone for PluginStatus
Source§fn clone(&self) -> PluginStatus
fn clone(&self) -> PluginStatus
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 PluginStatus
impl Debug for PluginStatus
Source§impl PartialEq for PluginStatus
impl PartialEq for PluginStatus
impl Eq for PluginStatus
impl StructuralPartialEq for PluginStatus
Auto Trait Implementations§
impl Freeze for PluginStatus
impl RefUnwindSafe for PluginStatus
impl Send for PluginStatus
impl Sync for PluginStatus
impl Unpin for PluginStatus
impl UnsafeUnpin for PluginStatus
impl UnwindSafe for PluginStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.