Struct libgit2_sys::git_checkout_options
source · #[repr(C)]pub struct git_checkout_options {Show 20 fields
pub version: c_uint,
pub checkout_strategy: c_uint,
pub disable_filters: c_int,
pub dir_mode: c_uint,
pub file_mode: c_uint,
pub file_open_flags: c_int,
pub notify_flags: c_uint,
pub notify_cb: git_checkout_notify_cb,
pub notify_payload: *mut c_void,
pub progress_cb: git_checkout_progress_cb,
pub progress_payload: *mut c_void,
pub paths: git_strarray,
pub baseline: *mut git_tree,
pub baseline_index: *mut git_index,
pub target_directory: *const c_char,
pub ancestor_label: *const c_char,
pub our_label: *const c_char,
pub their_label: *const c_char,
pub perfdata_cb: git_checkout_perfdata_cb,
pub perfdata_payload: *mut c_void,
}
Fields§
§version: c_uint
§checkout_strategy: c_uint
§disable_filters: c_int
§dir_mode: c_uint
§file_mode: c_uint
§file_open_flags: c_int
§notify_flags: c_uint
§notify_cb: git_checkout_notify_cb
§notify_payload: *mut c_void
§progress_cb: git_checkout_progress_cb
§progress_payload: *mut c_void
§paths: git_strarray
§baseline: *mut git_tree
§baseline_index: *mut git_index
§target_directory: *const c_char
§ancestor_label: *const c_char
§our_label: *const c_char
§their_label: *const c_char
§perfdata_cb: git_checkout_perfdata_cb
§perfdata_payload: *mut c_void
Auto Trait Implementations§
impl RefUnwindSafe for git_checkout_options
impl !Send for git_checkout_options
impl !Sync for git_checkout_options
impl Unpin for git_checkout_options
impl UnwindSafe for git_checkout_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