pub struct RootScannerStats {
pub registered_roots: usize,
pub scans_performed: usize,
pub total_roots_found: usize,
pub average_roots_per_scan: f64,
}Expand description
Statistics for the root scanner
Fields§
§registered_roots: usize§scans_performed: usize§total_roots_found: usize§average_roots_per_scan: f64Trait Implementations§
Source§impl Clone for RootScannerStats
impl Clone for RootScannerStats
Source§fn clone(&self) -> RootScannerStats
fn clone(&self) -> RootScannerStats
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 RootScannerStats
impl RefUnwindSafe for RootScannerStats
impl Send for RootScannerStats
impl Sync for RootScannerStats
impl Unpin for RootScannerStats
impl UnwindSafe for RootScannerStats
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