pub enum PushError {
BareRepository,
NoUpstream,
Failure(String),
}
Expand description
Failed to push subtree to remote
Variants
BareRepository
NoUpstream
Failure(String)
Trait Implementations
sourceimpl From<PushError> for PosixError
impl From<PushError> for PosixError
sourceimpl From<SubtreePushError> for PushError
impl From<SubtreePushError> for PushError
sourcefn from(prev: SubtreePushError) -> Self
fn from(prev: SubtreePushError) -> Self
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for PushError
impl Send for PushError
impl Sync for PushError
impl Unpin for PushError
impl UnwindSafe for PushError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more