pub struct ScanMetrics {
pub entries_visited: usize,
pub files_considered: usize,
pub files_included: usize,
pub logical_bytes: u64,
pub elapsed_ms: u64,
}Fields§
§entries_visited: usize§files_considered: usize§files_included: usize§logical_bytes: u64§elapsed_ms: u64Implementations§
Trait Implementations§
Source§impl Clone for ScanMetrics
impl Clone for ScanMetrics
Source§fn clone(&self) -> ScanMetrics
fn clone(&self) -> ScanMetrics
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 ScanMetrics
impl Debug for ScanMetrics
Source§impl Default for ScanMetrics
impl Default for ScanMetrics
Source§fn default() -> ScanMetrics
fn default() -> ScanMetrics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ScanMetrics
impl RefUnwindSafe for ScanMetrics
impl Send for ScanMetrics
impl Sync for ScanMetrics
impl Unpin for ScanMetrics
impl UnsafeUnpin for ScanMetrics
impl UnwindSafe for ScanMetrics
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