[][src]Struct git2::Blame

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

Opaque structure to hold blame results.

Implementations

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

pub fn len(&self) -> usize[src]

Gets the number of hunks that exist in the blame structure.

pub fn is_empty(&self) -> bool[src]

Return true is there is no hunk in the blame structure.

pub fn get_index(&self, index: usize) -> Option<BlameHunk<'_>>[src]

Gets the blame hunk at the given index.

pub fn get_line(&self, lineno: usize) -> Option<BlameHunk<'_>>[src]

Gets the hunk that relates to the given line number in the newest commit.

pub fn iter(&self) -> BlameIter<'_>

Notable traits for BlameIter<'blame>

impl<'blame> Iterator for BlameIter<'blame> type Item = BlameHunk<'blame>;
[src]

Returns an iterator over the hunks in this blame.

Trait Implementations

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

Auto Trait Implementations

impl<'repo> RefUnwindSafe for Blame<'repo>[src]

impl<'repo> !Send for Blame<'repo>[src]

impl<'repo> !Sync for Blame<'repo>[src]

impl<'repo> Unpin for Blame<'repo>[src]

impl<'repo> UnwindSafe for Blame<'repo>[src]

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.