pub struct GitFetcherConfig {
pub ssh_key_path: Option<PathBuf>,
pub use_credential_helper: bool,
pub proxy: Option<String>,
pub timeout_seconds: u64,
}Fields§
§ssh_key_path: Option<PathBuf>§use_credential_helper: bool§proxy: Option<String>§timeout_seconds: u64Implementations§
Trait Implementations§
Source§impl Clone for GitFetcherConfig
impl Clone for GitFetcherConfig
Source§fn clone(&self) -> GitFetcherConfig
fn clone(&self) -> GitFetcherConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GitFetcherConfig
impl Debug for GitFetcherConfig
Source§impl Default for GitFetcherConfig
impl Default for GitFetcherConfig
Source§fn default() -> GitFetcherConfig
fn default() -> GitFetcherConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GitFetcherConfig
impl RefUnwindSafe for GitFetcherConfig
impl Send for GitFetcherConfig
impl Sync for GitFetcherConfig
impl Unpin for GitFetcherConfig
impl UnsafeUnpin for GitFetcherConfig
impl UnwindSafe for GitFetcherConfig
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