pub struct RemoteHelperPushOutcome {
pub expanded_refspecs: Vec<String>,
pub successful_refs: Vec<String>,
pub dry_run: bool,
}Expand description
Structured result of a successful remote-helper push.
Fields§
§expanded_refspecs: Vec<String>Concrete refspecs sent to fast-export after wildcard expansion.
successful_refs: Vec<String>Destination ref names acknowledged by the helper.
dry_run: boolWhether execution stopped after helper discovery because of dry_run.
Trait Implementations§
Source§impl Clone for RemoteHelperPushOutcome
impl Clone for RemoteHelperPushOutcome
Source§fn clone(&self) -> RemoteHelperPushOutcome
fn clone(&self) -> RemoteHelperPushOutcome
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 RemoteHelperPushOutcome
impl Debug for RemoteHelperPushOutcome
Source§impl Default for RemoteHelperPushOutcome
impl Default for RemoteHelperPushOutcome
Source§fn default() -> RemoteHelperPushOutcome
fn default() -> RemoteHelperPushOutcome
Returns the “default value” for a type. Read more
impl Eq for RemoteHelperPushOutcome
Source§impl PartialEq for RemoteHelperPushOutcome
impl PartialEq for RemoteHelperPushOutcome
impl StructuralPartialEq for RemoteHelperPushOutcome
Auto Trait Implementations§
impl Freeze for RemoteHelperPushOutcome
impl RefUnwindSafe for RemoteHelperPushOutcome
impl Send for RemoteHelperPushOutcome
impl Sync for RemoteHelperPushOutcome
impl Unpin for RemoteHelperPushOutcome
impl UnsafeUnpin for RemoteHelperPushOutcome
impl UnwindSafe for RemoteHelperPushOutcome
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