#[repr(C)]pub struct git_odb_writepack {
    pub backend: *mut git_odb_backend,
    pub append: Option<extern "C" fn(*mut git_odb_writepack, *const c_void, size_t, *mut git_indexer_progress) -> c_int>,
    pub commit: Option<unsafe extern "C" fn(*mut git_odb_writepack, *mut git_indexer_progress) -> c_int>,
    pub free: Option<unsafe extern "C" fn(*mut git_odb_writepack)>,
}Fields§
§backend: *mut git_odb_backend§append: Option<extern "C" fn(*mut git_odb_writepack, *const c_void, size_t, *mut git_indexer_progress) -> c_int>§commit: Option<unsafe extern "C" fn(*mut git_odb_writepack, *mut git_indexer_progress) -> c_int>§free: Option<unsafe extern "C" fn(*mut git_odb_writepack)>Auto Trait Implementations§
impl Freeze for git_odb_writepack
impl RefUnwindSafe for git_odb_writepack
impl !Send for git_odb_writepack
impl !Sync for git_odb_writepack
impl Unpin for git_odb_writepack
impl UnwindSafe for git_odb_writepack
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