Enum jj_lib::working_copy::ResetError
source · pub enum ResetError {
SourceNotFound {
source: Box<dyn Error + Send + Sync>,
},
InternalBackendError(BackendError),
TreeStateError(TreeStateError),
}
Variants§
Trait Implementations§
source§impl Debug for ResetError
impl Debug for ResetError
source§impl Display for ResetError
impl Display for ResetError
source§impl Error for ResetError
impl Error for ResetError
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 ResetError
impl From<BackendError> for ResetError
source§fn from(source: BackendError) -> Self
fn from(source: BackendError) -> Self
Converts to this type from the input type.
source§impl From<TreeStateError> for ResetError
impl From<TreeStateError> for ResetError
source§fn from(source: TreeStateError) -> Self
fn from(source: TreeStateError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for ResetError
impl Send for ResetError
impl Sync for ResetError
impl Unpin for ResetError
impl !UnwindSafe for ResetError
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