pub enum PullError {
Failure(String),
IOError(Error),
NoChanges,
NoUpstream,
ReferenceNotFound(RefSearchError),
WorkTreeDirty,
}
Expand description
Failed to update a subtree from remote
Variants§
Failure(String)
IOError(Error)
NoChanges
NoUpstream
ReferenceNotFound(RefSearchError)
WorkTreeDirty
Trait Implementations§
Source§impl Error for PullError
impl Error for PullError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<PullError> for PosixError
impl From<PullError> for PosixError
Source§impl From<RefSearchError> for PullError
impl From<RefSearchError> for PullError
Source§fn from(source: RefSearchError) -> Self
fn from(source: RefSearchError) -> Self
Converts to this type from the input type.
Source§impl From<SubtreePullError> for PullError
impl From<SubtreePullError> for PullError
Source§fn from(prev: SubtreePullError) -> Self
fn from(prev: SubtreePullError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PullError
impl !RefUnwindSafe for PullError
impl Send for PullError
impl Sync for PullError
impl Unpin for PullError
impl !UnwindSafe for PullError
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