Struct jj_lib::backend::BackendInitError
source · pub struct BackendInitError(pub Box<dyn Error + Send + Sync>);
Expand description
Error that may occur during backend initialization.
Tuple Fields§
§0: Box<dyn Error + Send + Sync>
Trait Implementations§
source§impl Debug for BackendInitError
impl Debug for BackendInitError
source§impl Display for BackendInitError
impl Display for BackendInitError
source§impl Error for BackendInitError
impl Error for BackendInitError
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.
source§impl From<BackendInitError> for WorkspaceInitError
impl From<BackendInitError> for WorkspaceInitError
source§fn from(source: BackendInitError) -> Self
fn from(source: BackendInitError) -> Self
Converts to this type from the input type.
source§impl From<GitBackendInitError> for BackendInitError
impl From<GitBackendInitError> for BackendInitError
source§fn from(err: GitBackendInitError) -> Self
fn from(err: GitBackendInitError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for BackendInitError
impl Send for BackendInitError
impl Sync for BackendInitError
impl Unpin for BackendInitError
impl !UnwindSafe for BackendInitError
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