[][src]Struct git2::PathspecMatchList

pub struct PathspecMatchList<'ps> { /* fields omitted */ }

List of filenames matching a pathspec.

Methods

impl<'ps> PathspecMatchList<'ps>
[src]

Important traits for PathspecEntries<'list>
pub fn entries(&self) -> PathspecEntries
[src]

Returns an iterator over the matching filenames in this list.

pub fn entry(&self, i: usize) -> Option<&[u8]>
[src]

Get a matching filename by position.

If this list was generated from a diff, then the return value will always be `None.

Important traits for PathspecDiffEntries<'list>
pub fn diff_entries(&self) -> PathspecDiffEntries
[src]

Returns an iterator over the matching diff entries in this list.

pub fn diff_entry(&self, i: usize) -> Option<DiffDelta>
[src]

Get a matching diff delta by position.

If the list was not generated from a diff, then the return value will always be None.

Important traits for PathspecFailedEntries<'list>
pub fn failed_entries(&self) -> PathspecFailedEntries
[src]

Returns an iterator over the non-matching entries in this list.

pub fn failed_entry(&self, i: usize) -> Option<&[u8]>
[src]

Get an original pathspec string that had no matches.

Trait Implementations

impl<'ps> Drop for PathspecMatchList<'ps>
[src]

Auto Trait Implementations

impl<'ps> !Send for PathspecMatchList<'ps>

impl<'ps> !Sync for PathspecMatchList<'ps>

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]