#[repr(C)]pub struct git_fetch_options {
    pub version: c_int,
    pub callbacks: git_remote_callbacks,
    pub prune: git_fetch_prune_t,
    pub update_fetchhead: c_uint,
    pub download_tags: git_remote_autotag_option_t,
    pub proxy_opts: git_proxy_options,
    pub depth: c_int,
    pub follow_redirects: git_remote_redirect_t,
    pub custom_headers: git_strarray,
}Fields§
§version: c_int§callbacks: git_remote_callbacks§prune: git_fetch_prune_t§update_fetchhead: c_uint§proxy_opts: git_proxy_options§depth: c_int§follow_redirects: git_remote_redirect_t§custom_headers: git_strarrayAuto Trait Implementations§
impl Freeze for git_fetch_options
impl RefUnwindSafe for git_fetch_options
impl !Send for git_fetch_options
impl !Sync for git_fetch_options
impl Unpin for git_fetch_options
impl UnwindSafe for git_fetch_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