pub struct ComparisonSummary {
pub in_both: usize,
pub only_in_dir1: usize,
pub only_in_dir2: usize,
pub dir1_newer: usize,
pub dir2_newer: usize,
pub same_time_diff_size: usize,
pub same_time_size_diff_content: usize,
}Fields§
§in_both: usize§only_in_dir1: usize§only_in_dir2: usize§dir1_newer: usize§dir2_newer: usize§same_time_diff_size: usize§same_time_size_diff_content: usizeImplementations§
Trait Implementations§
Source§impl Default for ComparisonSummary
impl Default for ComparisonSummary
Source§fn default() -> ComparisonSummary
fn default() -> ComparisonSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ComparisonSummary
impl RefUnwindSafe for ComparisonSummary
impl Send for ComparisonSummary
impl Sync for ComparisonSummary
impl Unpin for ComparisonSummary
impl UnsafeUnpin for ComparisonSummary
impl UnwindSafe for ComparisonSummary
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more