pub struct git_checkout_options {
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: Option<git_checkout_notify_cb>,
pub notify_payload: *mut c_void,
pub progress_cb: Option<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: Option<git_checkout_perfdata_cb>,
pub perfdata_payload: *mut c_void,
}
Fields
version | |
checkout_strategy | |
disable_filters | |
dir_mode | |
file_mode | |
file_open_flags | |
notify_flags | |
notify_cb | |
notify_payload | |
progress_cb | |
progress_payload | |
paths | |
baseline | |
baseline_index | |
target_directory | |
ancestor_label | |
our_label | |
their_label | |
perfdata_cb | |
perfdata_payload | |