Struct git2::PathspecMatchList
source · [−]pub struct PathspecMatchList<'ps> { /* private fields */ }
Expand description
List of filenames matching a pathspec.
Implementations
sourceimpl<'ps> PathspecMatchList<'ps>
impl<'ps> PathspecMatchList<'ps>
sourcepub fn entries(&self) -> PathspecEntries<'_>ⓘNotable traits for PathspecEntries<'list>impl<'list> Iterator for PathspecEntries<'list> type Item = &'list [u8];
pub fn entries(&self) -> PathspecEntries<'_>ⓘNotable traits for PathspecEntries<'list>impl<'list> Iterator for PathspecEntries<'list> type Item = &'list [u8];
Returns an iterator over the matching filenames in this list.
sourcepub fn entry(&self, i: usize) -> Option<&[u8]>
pub fn entry(&self, i: usize) -> Option<&[u8]>
Get a matching filename by position.
If this list was generated from a diff, then the return value will always be `None.
sourcepub fn diff_entries(&self) -> PathspecDiffEntries<'_>ⓘNotable traits for PathspecDiffEntries<'list>impl<'list> Iterator for PathspecDiffEntries<'list> type Item = DiffDelta<'list>;
pub fn diff_entries(&self) -> PathspecDiffEntries<'_>ⓘNotable traits for PathspecDiffEntries<'list>impl<'list> Iterator for PathspecDiffEntries<'list> type Item = DiffDelta<'list>;
Returns an iterator over the matching diff entries in this list.
sourcepub fn diff_entry(&self, i: usize) -> Option<DiffDelta<'_>>
pub fn diff_entry(&self, i: usize) -> Option<DiffDelta<'_>>
Get a matching diff delta by position.
If the list was not generated from a diff, then the return value will
always be None
.
sourcepub fn failed_entries(&self) -> PathspecFailedEntries<'_>ⓘNotable traits for PathspecFailedEntries<'list>impl<'list> Iterator for PathspecFailedEntries<'list> type Item = &'list [u8];
pub fn failed_entries(&self) -> PathspecFailedEntries<'_>ⓘNotable traits for PathspecFailedEntries<'list>impl<'list> Iterator for PathspecFailedEntries<'list> type Item = &'list [u8];
Returns an iterator over the non-matching entries in this list.
sourcepub fn failed_entry(&self, i: usize) -> Option<&[u8]>
pub fn failed_entry(&self, i: usize) -> Option<&[u8]>
Get an original pathspec string that had no matches.
Trait Implementations
Auto Trait Implementations
impl<'ps> RefUnwindSafe for PathspecMatchList<'ps>
impl<'ps> !Send for PathspecMatchList<'ps>
impl<'ps> !Sync for PathspecMatchList<'ps>
impl<'ps> Unpin for PathspecMatchList<'ps>
impl<'ps> UnwindSafe for PathspecMatchList<'ps>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more