Struct git2::Statuses [] [src]

pub struct Statuses<'repo> { /* fields omitted */ }

A container for a list of status information about a repository.

Each instance appears as if it were a collection, having a length and allowing indexing, as well as providing an iterator.

Methods

impl<'repo> Statuses<'repo>
[src]

[src]

Gets a status entry from this list at the specified index.

Returns None if the index is out of bounds.

[src]

Gets the count of status entries in this list.

If there are no changes in status (according to the options given when the status list was created), this should return 0.

[src]

Return true if there is no status entry in this list.

[src]

Returns an iterator over the statuses in this list.

Trait Implementations

impl<'repo> Drop for Statuses<'repo>
[src]

[src]

Executes the destructor for this type. Read more