pub enum RemoteHelperEvent {
MissingRefspecCapability,
FastImportFailed,
PushRejected(String),
}Expand description
Structured presentation events emitted while executing a helper operation.
Variants§
MissingRefspecCapability
Import helper omitted the recommended private refspec capability.
FastImportFailed
The helper process failed while producing its fast-import stream.
PushRejected(String)
Helper rejected a destination and supplied this protocol detail.
Trait Implementations§
Source§impl Clone for RemoteHelperEvent
impl Clone for RemoteHelperEvent
Source§fn clone(&self) -> RemoteHelperEvent
fn clone(&self) -> RemoteHelperEvent
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 RemoteHelperEvent
impl Debug for RemoteHelperEvent
impl Eq for RemoteHelperEvent
Source§impl PartialEq for RemoteHelperEvent
impl PartialEq for RemoteHelperEvent
impl StructuralPartialEq for RemoteHelperEvent
Auto Trait Implementations§
impl Freeze for RemoteHelperEvent
impl RefUnwindSafe for RemoteHelperEvent
impl Send for RemoteHelperEvent
impl Sync for RemoteHelperEvent
impl Unpin for RemoteHelperEvent
impl UnsafeUnpin for RemoteHelperEvent
impl UnwindSafe for RemoteHelperEvent
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