Struct libgit2_sys::git_blame_options
source · [−]#[repr(C)]pub struct git_blame_options {
pub version: c_uint,
pub flags: u32,
pub min_match_characters: u16,
pub newest_commit: git_oid,
pub oldest_commit: git_oid,
pub min_line: usize,
pub max_line: usize,
}
Fields
version: c_uint
flags: u32
min_match_characters: u16
newest_commit: git_oid
oldest_commit: git_oid
min_line: usize
max_line: usize
Trait Implementations
sourceimpl Clone for git_blame_options
impl Clone for git_blame_options
sourcefn clone(&self) -> git_blame_options
fn clone(&self) -> git_blame_options
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for git_blame_options
Auto Trait Implementations
impl RefUnwindSafe for git_blame_options
impl Send for git_blame_options
impl Sync for git_blame_options
impl Unpin for git_blame_options
impl UnwindSafe for git_blame_options
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more