Struct git2::BlameOptions [] [src]

pub struct BlameOptions {
    // some fields omitted
}

Blame options

Methods

impl BlameOptions
[src]

fn new() -> BlameOptions

Initialize options

fn track_copies_same_file(&mut self, opt: bool) -> &mut BlameOptions

Track lines that have moved within a file.

fn track_copies_same_commit_moves(&mut self, opt: bool) -> &mut BlameOptions

Track lines that have moved across files in the same commit.

fn track_copies_same_commit_copies(&mut self, opt: bool) -> &mut BlameOptions

Track lines that have been copied from another file that exists in the same commit.

fn track_copies_any_commit_copies(&mut self, opt: bool) -> &mut BlameOptions

Track lines that have been copied from another file that exists in any commit.

fn first_parent(&mut self, opt: bool) -> &mut BlameOptions

Restrict the search of commits to those reachable following only the first parents.

fn newest_commit(&mut self, id: Oid) -> &mut BlameOptions

Setter for the id of the newest commit to consider.

fn oldest_commit(&mut self, id: Oid) -> &mut BlameOptions

Setter for the id of the oldest commit to consider.