pub struct VerifyReport {
pub lines: Vec<String>,
pub failures: usize,
pub managed_drift: usize,
pub adopted_drift: usize,
}Expand description
What a verification run reports.
Fields§
§lines: Vec<String>Every line to print, failures and notes alike, in order.
failures: usizeHow many lines are failures.
managed_drift: usizeHow many managed files are missing, symlinked, or byte-drifted.
adopted_drift: usizeHow many adopted files await reconciliation.
Trait Implementations§
Source§impl Debug for VerifyReport
impl Debug for VerifyReport
Source§impl Default for VerifyReport
impl Default for VerifyReport
Source§fn default() -> VerifyReport
fn default() -> VerifyReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VerifyReport
impl RefUnwindSafe for VerifyReport
impl Send for VerifyReport
impl Sync for VerifyReport
impl Unpin for VerifyReport
impl UnsafeUnpin for VerifyReport
impl UnwindSafe for VerifyReport
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