pub struct CombinedTreeDiffOptions {
pub recursive: bool,
pub tree_in_recursive: bool,
}Expand description
Options for the multitree walk.
Fields§
§recursive: boolRecurse into sub-trees (diff_options.flags.recursive).
tree_in_recursive: boolEmit tree directory lines when recursing (tree_in_recursive, e.g. --find-object).
Trait Implementations§
Source§impl Clone for CombinedTreeDiffOptions
impl Clone for CombinedTreeDiffOptions
Source§fn clone(&self) -> CombinedTreeDiffOptions
fn clone(&self) -> CombinedTreeDiffOptions
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 moreSource§impl Debug for CombinedTreeDiffOptions
impl Debug for CombinedTreeDiffOptions
Source§impl Default for CombinedTreeDiffOptions
impl Default for CombinedTreeDiffOptions
Source§fn default() -> CombinedTreeDiffOptions
fn default() -> CombinedTreeDiffOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CombinedTreeDiffOptions
impl RefUnwindSafe for CombinedTreeDiffOptions
impl Send for CombinedTreeDiffOptions
impl Sync for CombinedTreeDiffOptions
impl Unpin for CombinedTreeDiffOptions
impl UnsafeUnpin for CombinedTreeDiffOptions
impl UnwindSafe for CombinedTreeDiffOptions
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