Enum jj_lib::git::GitImportError
source · pub enum GitImportError {
MissingHeadTarget {
id: CommitId,
err: BackendError,
},
MissingRefAncestor {
ref_name: String,
err: BackendError,
},
RemoteReservedForLocalGitRepo,
InternalGitError(Error),
}
Variants§
Trait Implementations§
source§impl Debug for GitImportError
impl Debug for GitImportError
source§impl Display for GitImportError
impl Display for GitImportError
source§impl Error for GitImportError
impl Error for GitImportError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<Error> for GitImportError
impl From<Error> for GitImportError
source§impl From<GitImportError> for GitFetchError
impl From<GitImportError> for GitFetchError
source§fn from(source: GitImportError) -> Self
fn from(source: GitImportError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for GitImportError
impl Send for GitImportError
impl Sync for GitImportError
impl Unpin for GitImportError
impl !UnwindSafe for GitImportError
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