#[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: usizeTrait Implementations§
Source§impl Clone for git_blame_options
 
impl Clone for git_blame_options
Source§fn clone(&self) -> git_blame_options
 
fn clone(&self) -> git_blame_options
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreimpl Copy for git_blame_options
Auto Trait Implementations§
impl Freeze for git_blame_options
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§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more