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