pub struct RemoteHelperPushOperation<'a> {
pub git_dir: &'a Path,
pub format: ObjectFormat,
pub config: &'a GitConfig,
pub remote_name: &'a str,
pub spec: &'a RemoteHelperSpec,
pub refspecs: &'a [String],
pub options: RemoteHelperPushOptions,
}Expand description
Fully resolved inputs for a remote-helper push.
Fields§
§git_dir: &'a PathLocal repository $GIT_DIR.
format: ObjectFormatLocal repository object format.
config: &'a GitConfigEffective repository configuration.
remote_name: &'a strRemote name used to update configured tracking refs.
spec: &'a RemoteHelperSpecAlready-resolved user-owned helper invocation.
refspecs: &'a [String]Caller-requested push refspecs before wildcard expansion.
options: RemoteHelperPushOptionsProtocol-affecting push controls.
Auto Trait Implementations§
impl<'a> Freeze for RemoteHelperPushOperation<'a>
impl<'a> RefUnwindSafe for RemoteHelperPushOperation<'a>
impl<'a> Send for RemoteHelperPushOperation<'a>
impl<'a> Sync for RemoteHelperPushOperation<'a>
impl<'a> Unpin for RemoteHelperPushOperation<'a>
impl<'a> UnsafeUnpin for RemoteHelperPushOperation<'a>
impl<'a> UnwindSafe for RemoteHelperPushOperation<'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