pub enum ModuleStatus {
Discovered,
Loading,
Loaded,
Failed,
Removed,
}Expand description
Discovered module status.
Variants§
Discovered
Module discovered but not loaded.
Loading
Module is loading.
Loaded
Module is loaded and active.
Failed
Module failed to load.
Removed
Module file was removed.
Trait Implementations§
Source§impl Clone for ModuleStatus
impl Clone for ModuleStatus
Source§fn clone(&self) -> ModuleStatus
fn clone(&self) -> ModuleStatus
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 ModuleStatus
Source§impl Debug for ModuleStatus
impl Debug for ModuleStatus
impl Eq for ModuleStatus
Source§impl PartialEq for ModuleStatus
impl PartialEq for ModuleStatus
Source§fn eq(&self, other: &ModuleStatus) -> bool
fn eq(&self, other: &ModuleStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModuleStatus
Auto Trait Implementations§
impl Freeze for ModuleStatus
impl RefUnwindSafe for ModuleStatus
impl Send for ModuleStatus
impl Sync for ModuleStatus
impl Unpin for ModuleStatus
impl UnsafeUnpin for ModuleStatus
impl UnwindSafe for ModuleStatus
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