Struct git2::Blame [−][src]
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<'_>ⓘ
[src]
Returns an iterator over the hunks in this blame.
Trait Implementations
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
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]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,