#[repr(C)]pub struct git_diff_delta {
    pub status: git_delta_t,
    pub flags: u32,
    pub similarity: u16,
    pub nfiles: u16,
    pub old_file: git_diff_file,
    pub new_file: git_diff_file,
}Fields§
§status: git_delta_t§flags: u32§similarity: u16§nfiles: u16§old_file: git_diff_file§new_file: git_diff_fileAuto Trait Implementations§
impl Freeze for git_diff_delta
impl RefUnwindSafe for git_diff_delta
impl !Send for git_diff_delta
impl !Sync for git_diff_delta
impl Unpin for git_diff_delta
impl UnwindSafe for git_diff_delta
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