pub struct PluginStats {
pub size_bytes: u64,
pub dependency_count: usize,
pub has_documentation: bool,
pub has_changelog: bool,
pub file_count: usize,
}Expand description
Plugin statistics
Fields§
§size_bytes: u64Total size in bytes
dependency_count: usizeNumber of dependencies
has_documentation: boolWhether plugin has documentation
has_changelog: boolWhether plugin has changelog
file_count: usizeNumber of files in plugin
Trait Implementations§
Source§impl Clone for PluginStats
impl Clone for PluginStats
Source§fn clone(&self) -> PluginStats
fn clone(&self) -> PluginStats
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 PluginStats
impl RefUnwindSafe for PluginStats
impl Send for PluginStats
impl Sync for PluginStats
impl Unpin for PluginStats
impl UnsafeUnpin for PluginStats
impl UnwindSafe for PluginStats
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