[][src]Struct git2::BlameHunk

pub struct BlameHunk<'blame> { /* fields omitted */ }

Structure that represents a blame hunk.

Methods

impl<'blame> BlameHunk<'blame>
[src]

pub fn final_commit_id(&self) -> Oid
[src]

Returns OID of the commit where this line was last changed

pub fn final_signature(&self) -> Signature
[src]

Returns signature of the commit.

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

Returns line number where this hunk begins.

Note that the start line is counting from 1.

pub fn orig_commit_id(&self) -> Oid
[src]

Returns the OID of the commit where this hunk was found.

This will usually be the same as final_commit_id, except when BlameOptions::track_copies_any_commit_copies has been turned on

pub fn orig_signature(&self) -> Signature
[src]

Returns signature of the commit.

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

Returns line number where this hunk begins.

Note that the start line is counting from 1.

pub fn path(&self) -> Option<&Path>
[src]

Returns path to the file where this hunk originated.

Note: None could be returned for non-unicode paths on Widnows.

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

Tests whether this hunk has been tracked to a boundary commit (the root, or the commit specified in git_blame_options.oldest_commit).

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

Returns number of lines in this hunk.

Auto Trait Implementations

impl<'blame> !Send for BlameHunk<'blame>

impl<'blame> !Sync for BlameHunk<'blame>

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]