pub struct Match<'a> {
pub pattern: &'a Pattern,
pub sequence_number: usize,
pub kind: MatchKind,
}
Expand description
Describes a matching pattern within a search for ignored paths.
Fields§
§pattern: &'a Pattern
The matching search specification, which contains the pathspec as well.
sequence_number: usize
The number of the sequence the matching pathspec was in, or the line of pathspec file it was read from if Search::source is not None
.
kind: MatchKind
How the pattern matched.
Implementations§
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