pub enum AError {
MutexPoison,
Unclassified,
}
Variants§
Trait Implementations§
Source§impl Error for AError
impl Error for AError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<T> From<PoisonError<T>> for AError
impl<T> From<PoisonError<T>> for AError
Source§fn from(_: PoisonError<T>) -> AError
fn from(_: PoisonError<T>) -> AError
Converts to this type from the input type.
impl Copy for AError
impl Eq for AError
impl StructuralPartialEq for AError
Auto Trait Implementations§
impl Freeze for AError
impl RefUnwindSafe for AError
impl Send for AError
impl Sync for AError
impl Unpin for AError
impl UnwindSafe for AError
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