Enum jj_lib::repo::StoreLoadError
source · pub enum StoreLoadError {
UnsupportedType {
store: &'static str,
store_type: String,
},
ReadError {
store: &'static str,
source: PathError,
},
Backend(BackendLoadError),
Signing(SignInitError),
}
Variants§
Trait Implementations§
source§impl Debug for StoreLoadError
impl Debug for StoreLoadError
source§impl Display for StoreLoadError
impl Display for StoreLoadError
source§impl Error for StoreLoadError
impl Error for StoreLoadError
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<BackendLoadError> for StoreLoadError
impl From<BackendLoadError> for StoreLoadError
source§fn from(source: BackendLoadError) -> Self
fn from(source: BackendLoadError) -> Self
Converts to this type from the input type.
source§impl From<SignInitError> for StoreLoadError
impl From<SignInitError> for StoreLoadError
source§fn from(source: SignInitError) -> Self
fn from(source: SignInitError) -> Self
Converts to this type from the input type.
source§impl From<StoreLoadError> for WorkspaceLoadError
impl From<StoreLoadError> for WorkspaceLoadError
source§fn from(source: StoreLoadError) -> Self
fn from(source: StoreLoadError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StoreLoadError
impl !RefUnwindSafe for StoreLoadError
impl Send for StoreLoadError
impl Sync for StoreLoadError
impl Unpin for StoreLoadError
impl !UnwindSafe for StoreLoadError
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