pub struct Match<'a> {
pub pattern: &'a Pattern,
pub source: Option<&'a Path>,
pub kind: Kind,
pub sequence_number: usize,
}
Expand description
Describes a matching pattern within a search for ignored paths.
Fields§
§pattern: &'a Pattern
The glob pattern itself, like /target/*
.
source: Option<&'a Path>
The path to the source from which the pattern was loaded, or None
if it was specified by other means.
kind: Kind
The kind of pattern this match represents.
sequence_number: usize
The line at which the pattern was found in its source
file, or the occurrence in which it was provided.
Trait Implementations§
source§impl<'a> Ord for Match<'a>
impl<'a> Ord for Match<'a>
source§impl<'a> PartialOrd for Match<'a>
impl<'a> PartialOrd for Match<'a>
impl<'a> Eq for Match<'a>
impl<'a> StructuralPartialEq for Match<'a>
Auto Trait Implementations§
impl<'a> Freeze for Match<'a>
impl<'a> RefUnwindSafe for Match<'a>
impl<'a> Send for Match<'a>
impl<'a> Sync for Match<'a>
impl<'a> Unpin for Match<'a>
impl<'a> UnwindSafe for Match<'a>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)