[][src]Struct git2::Blame

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

Opaque structure to hold blame results.

Methods

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.

Important traits for BlameIter<'blame>
pub fn iter(&self) -> BlameIter
[src]

Returns an iterator over the hunks in this blame.

Trait Implementations

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

Auto Trait Implementations

impl<'repo> !Send for Blame<'repo>

impl<'repo> !Sync for Blame<'repo>

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]