pub struct ScanReport {
pub manifest: String,
pub cataloged: usize,
pub hashed: usize,
pub preserved: usize,
pub bytes: u64,
pub wrote: bool,
pub dry_run: bool,
pub warnings: Vec<String>,
pub untracked: Vec<String>,
}Expand description
Result of scan.
Fields§
§manifest: String§cataloged: usize§hashed: usize§preserved: usize§bytes: u64§wrote: bool§dry_run: bool§warnings: Vec<String>§untracked: Vec<String>Trait Implementations§
Source§impl Debug for ScanReport
impl Debug for ScanReport
Auto Trait Implementations§
impl Freeze for ScanReport
impl RefUnwindSafe for ScanReport
impl Send for ScanReport
impl Sync for ScanReport
impl Unpin for ScanReport
impl UnsafeUnpin for ScanReport
impl UnwindSafe for ScanReport
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