pub struct UntrackedPathOptions {
pub directory: bool,
pub no_empty_directory: bool,
pub preserve_ignored_directories: bool,
pub exclude_standard: bool,
pub ignored_only: bool,
pub exclude_patterns: Vec<Vec<u8>>,
pub exclude_per_directory: Vec<String>,
pub pathspecs: Vec<UntrackedPathspecFilter>,
}Fields§
§directory: bool§no_empty_directory: bool§preserve_ignored_directories: bool§exclude_standard: bool§ignored_only: bool§exclude_patterns: Vec<Vec<u8>>§exclude_per_directory: Vec<String>§pathspecs: Vec<UntrackedPathspecFilter>Trait Implementations§
Source§impl Clone for UntrackedPathOptions
impl Clone for UntrackedPathOptions
Source§fn clone(&self) -> UntrackedPathOptions
fn clone(&self) -> UntrackedPathOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UntrackedPathOptions
impl Debug for UntrackedPathOptions
Source§impl Default for UntrackedPathOptions
impl Default for UntrackedPathOptions
Source§fn default() -> UntrackedPathOptions
fn default() -> UntrackedPathOptions
Returns the “default value” for a type. Read more
impl Eq for UntrackedPathOptions
Source§impl PartialEq for UntrackedPathOptions
impl PartialEq for UntrackedPathOptions
Source§fn eq(&self, other: &UntrackedPathOptions) -> bool
fn eq(&self, other: &UntrackedPathOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UntrackedPathOptions
Auto Trait Implementations§
impl Freeze for UntrackedPathOptions
impl RefUnwindSafe for UntrackedPathOptions
impl Send for UntrackedPathOptions
impl Sync for UntrackedPathOptions
impl Unpin for UntrackedPathOptions
impl UnsafeUnpin for UntrackedPathOptions
impl UnwindSafe for UntrackedPathOptions
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