[go: up one dir, main page]

Struct git2::Blame[][src]

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

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]

fn drop(&mut self)[src]

Executes the destructor for this type. Read more

Auto Trait Implementations

impl<'repo> RefUnwindSafe for Blame<'repo>

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

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

impl<'repo> Unpin for Blame<'repo>

impl<'repo> UnwindSafe for Blame<'repo>

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.