pub struct ModuleStats {
pub total_modules: usize,
pub current_focus: String,
pub modules: HashMap<String, ModuleInfo>,
}Expand description
Module statistics
Fields§
§total_modules: usizeTotal number of modules
current_focus: StringCurrent focus module
modules: HashMap<String, ModuleInfo>Information about each module
Trait Implementations§
Source§impl Clone for ModuleStats
impl Clone for ModuleStats
Source§fn clone(&self) -> ModuleStats
fn clone(&self) -> ModuleStats
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 ModuleStats
impl RefUnwindSafe for ModuleStats
impl Send for ModuleStats
impl Sync for ModuleStats
impl Unpin for ModuleStats
impl UnwindSafe for ModuleStats
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