pub enum AccessError {
UnsupportedMode,
BorrowConflict,
Poisoned,
}Expand description
Errors that can occur when accessing shared containers.
Variants§
UnsupportedMode
The requested operation is not supported for this container type.
This typically occurs when trying to use synchronous methods on an async container, or vice versa.
BorrowConflict
A borrow conflict occurred (for single-threaded RefCell-based containers).
This happens when trying to acquire a write lock while a read lock exists, or when trying to acquire any lock while a write lock exists.
Poisoned
The lock was poisoned due to a panic while holding the lock.
This only occurs with multi-threaded RwLock-based containers.
Trait Implementations§
Source§impl Clone for AccessError
impl Clone for AccessError
Source§fn clone(&self) -> AccessError
fn clone(&self) -> AccessError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AccessError
impl Debug for AccessError
Source§impl Display for AccessError
impl Display for AccessError
Source§impl Error for AccessError
impl Error for AccessError
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 PartialEq for AccessError
impl PartialEq for AccessError
impl Eq for AccessError
impl StructuralPartialEq for AccessError
Auto Trait Implementations§
impl Freeze for AccessError
impl RefUnwindSafe for AccessError
impl Send for AccessError
impl Sync for AccessError
impl Unpin for AccessError
impl UnwindSafe for AccessError
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