pub struct LoadedModule {
pub metadata: ModuleMetadata,
pub config: ModuleConfig,
pub state: ModuleState,
pub load_order: usize,
pub init_duration: Option<Duration>,
}
Expand description
Information about a loaded module
Fields§
§metadata: ModuleMetadata
§config: ModuleConfig
§state: ModuleState
§load_order: usize
§init_duration: Option<Duration>
Trait Implementations§
Source§impl Clone for LoadedModule
impl Clone for LoadedModule
Source§fn clone(&self) -> LoadedModule
fn clone(&self) -> LoadedModule
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 moreAuto Trait Implementations§
impl Freeze for LoadedModule
impl RefUnwindSafe for LoadedModule
impl Send for LoadedModule
impl Sync for LoadedModule
impl Unpin for LoadedModule
impl UnwindSafe for LoadedModule
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