pub enum PluginState {
Declared,
Loaded,
Started,
}
Expand description
The plugin can be in one of these states:
- Declared: the plugin is declared in the configuration file, but not loaded yet or failed to load
- Loaded: the plugin is loaded, but not started yet or failed to start
- Started: the plugin is started and running
Variants§
Trait Implementations§
Source§impl Clone for PluginState
impl Clone for PluginState
Source§fn clone(&self) -> PluginState
fn clone(&self) -> PluginState
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 PluginState
impl Debug for PluginState
Source§impl<'de> Deserialize<'de> for PluginState
impl<'de> Deserialize<'de> for PluginState
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 Ord for PluginState
impl Ord for PluginState
Source§fn cmp(&self, other: &PluginState) -> Ordering
fn cmp(&self, other: &PluginState) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PluginState
impl PartialEq for PluginState
Source§impl PartialOrd for PluginState
impl PartialOrd for PluginState
Source§impl Serialize for PluginState
impl Serialize for PluginState
impl Copy for PluginState
impl Eq for PluginState
impl StructuralPartialEq for PluginState
Auto Trait Implementations§
impl Freeze for PluginState
impl RefUnwindSafe for PluginState
impl Send for PluginState
impl Sync for PluginState
impl Unpin for PluginState
impl UnwindSafe for PluginState
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,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.