Enum jj_lib::repo::RepoLoaderError
source · pub enum RepoLoaderError {
Backend(BackendError),
OpHeadResolution(OpHeadResolutionError),
OpStore(OpStoreError),
}
Variants§
Trait Implementations§
source§impl Debug for RepoLoaderError
impl Debug for RepoLoaderError
source§impl Display for RepoLoaderError
impl Display for RepoLoaderError
source§impl Error for RepoLoaderError
impl Error for RepoLoaderError
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<BackendError> for RepoLoaderError
impl From<BackendError> for RepoLoaderError
source§fn from(source: BackendError) -> Self
fn from(source: BackendError) -> Self
Converts to this type from the input type.
source§impl From<OpHeadResolutionError> for RepoLoaderError
impl From<OpHeadResolutionError> for RepoLoaderError
source§fn from(source: OpHeadResolutionError) -> Self
fn from(source: OpHeadResolutionError) -> Self
Converts to this type from the input type.
source§impl From<OpStoreError> for RepoLoaderError
impl From<OpStoreError> for RepoLoaderError
source§fn from(source: OpStoreError) -> Self
fn from(source: OpStoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RepoLoaderError
impl !RefUnwindSafe for RepoLoaderError
impl Send for RepoLoaderError
impl Sync for RepoLoaderError
impl Unpin for RepoLoaderError
impl !UnwindSafe for RepoLoaderError
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