pub struct PluginRegistryStats {
pub total_plugins: usize,
pub loaded_plugins: usize,
pub unloaded_plugins: usize,
pub capabilities: HashMap<String, usize>,
}Expand description
Plugin registry statistics
Fields§
§total_plugins: usizeTotal number of registered plugins
loaded_plugins: usizeNumber of loaded plugins
unloaded_plugins: usizeNumber of unloaded plugins
capabilities: HashMap<String, usize>Capabilities and their counts
Trait Implementations§
Source§impl Clone for PluginRegistryStats
impl Clone for PluginRegistryStats
Source§fn clone(&self) -> PluginRegistryStats
fn clone(&self) -> PluginRegistryStats
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 PluginRegistryStats
impl RefUnwindSafe for PluginRegistryStats
impl Send for PluginRegistryStats
impl Sync for PluginRegistryStats
impl Unpin for PluginRegistryStats
impl UnwindSafe for PluginRegistryStats
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