#[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_uintcheckout_strategy: c_uintdisable_filters: c_intdir_mode: c_uintfile_mode: c_uintfile_open_flags: c_intnotify_flags: c_uintnotify_cb: git_checkout_notify_cbnotify_payload: *mut c_voidprogress_cb: git_checkout_progress_cbprogress_payload: *mut c_voidpaths: git_strarraybaseline: *mut git_treebaseline_index: *mut git_indextarget_directory: *const c_charancestor_label: *const c_charour_label: *const c_chartheir_label: *const c_charperfdata_cb: git_checkout_perfdata_cbperfdata_payload: *mut c_void

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.