pub struct DiffOptions {
pub compare_size: bool,
pub compare_mtime: bool,
pub compare_checksum: bool,
pub ignore_patterns: Vec<String>,
pub max_depth: Option<usize>,
pub follow_symlinks: bool,
}Fields§
§compare_size: bool§compare_mtime: bool§compare_checksum: bool§ignore_patterns: Vec<String>§max_depth: Option<usize>§follow_symlinks: boolTrait Implementations§
Source§impl Clone for DiffOptions
impl Clone for DiffOptions
Source§fn clone(&self) -> DiffOptions
fn clone(&self) -> DiffOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DiffOptions
impl RefUnwindSafe for DiffOptions
impl Send for DiffOptions
impl Sync for DiffOptions
impl Unpin for DiffOptions
impl UnwindSafe for DiffOptions
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