[][src]Struct libgit2_sys::git_checkout_options

#[repr(C)]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: 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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.