pub struct MineSummary {
pub files_scanned: usize,
pub tasks_written: usize,
}Expand description
Outcome counts from a single mine run.
Fields§
§files_scanned: usizeLean files read and scanned.
tasks_written: usizeTask records written.
Trait Implementations§
Source§impl Clone for MineSummary
impl Clone for MineSummary
Source§fn clone(&self) -> MineSummary
fn clone(&self) -> MineSummary
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 moreimpl Copy for MineSummary
Source§impl Debug for MineSummary
impl Debug for MineSummary
Source§impl Default for MineSummary
impl Default for MineSummary
Source§fn default() -> MineSummary
fn default() -> MineSummary
Returns the “default value” for a type. Read more
impl Eq for MineSummary
Source§impl PartialEq for MineSummary
impl PartialEq for MineSummary
Source§fn eq(&self, other: &MineSummary) -> bool
fn eq(&self, other: &MineSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MineSummary
Auto Trait Implementations§
impl Freeze for MineSummary
impl RefUnwindSafe for MineSummary
impl Send for MineSummary
impl Sync for MineSummary
impl Unpin for MineSummary
impl UnsafeUnpin for MineSummary
impl UnwindSafe for MineSummary
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