pub struct ModuleEntry {
pub dependencies: Vec<String>,
pub plugin_name: String,
}Expand description
One registered module: where it came from, what it consumes, which plugin implements it.
Fields§
§dependencies: Vec<String>Keys this module depends on. When any of them changes (directly or transitively), this module’s plugin is part of the affected set.
plugin_name: StringPlugin that implements the module; the name handed to ModuleReload.
Trait Implementations§
Source§impl Clone for ModuleEntry
impl Clone for ModuleEntry
Source§fn clone(&self) -> ModuleEntry
fn clone(&self) -> ModuleEntry
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 moreSource§impl Debug for ModuleEntry
impl Debug for ModuleEntry
impl Eq for ModuleEntry
Source§impl PartialEq for ModuleEntry
impl PartialEq for ModuleEntry
impl StructuralPartialEq for ModuleEntry
Auto Trait Implementations§
impl Freeze for ModuleEntry
impl RefUnwindSafe for ModuleEntry
impl Send for ModuleEntry
impl Sync for ModuleEntry
impl Unpin for ModuleEntry
impl UnsafeUnpin for ModuleEntry
impl UnwindSafe for ModuleEntry
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