pub struct DiscoveredRemoteHelperFetchOperation<'a> {
pub git_dir: &'a Path,
pub format: ObjectFormat,
pub config: &'a GitConfig,
pub remote_name: &'a str,
pub refspecs: &'a [String],
pub options: &'a FetchOptions,
}Expand description
Fetch inputs used after a live helper has already negotiated capabilities, refs, and object format during clone bootstrap.
Fields§
§git_dir: &'a PathFinal repository $GIT_DIR; must equal the discovery directory.
format: ObjectFormatObject format adopted from helper discovery.
config: &'a GitConfigEffective configuration after clone bootstrap finalization.
remote_name: &'a strConfigured remote name used for fetch finalization.
refspecs: &'a [String]Caller-requested fetch refspecs.
options: &'a FetchOptionsOrdinary fetch behavior applied after helper import.
Auto Trait Implementations§
impl<'a> Freeze for DiscoveredRemoteHelperFetchOperation<'a>
impl<'a> RefUnwindSafe for DiscoveredRemoteHelperFetchOperation<'a>
impl<'a> Send for DiscoveredRemoteHelperFetchOperation<'a>
impl<'a> Sync for DiscoveredRemoteHelperFetchOperation<'a>
impl<'a> Unpin for DiscoveredRemoteHelperFetchOperation<'a>
impl<'a> UnsafeUnpin for DiscoveredRemoteHelperFetchOperation<'a>
impl<'a> UnwindSafe for DiscoveredRemoteHelperFetchOperation<'a>
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