pub enum DeleteError {
BadContext(MaybeKind),
BadId(MaybeKind),
AccessDenied(MaybeKind),
BadState(MaybeKind),
}
Available on crate features
unstable
and dcre
only.Expand description
Error type for MutexRef::delete
.
This type is an error kind type.
Variants§
BadContext(MaybeKind)
Requires: cfg(not(feature = "none"))
BadId(MaybeKind)
Requires: cfg(not(feature = "none"))
AccessDenied(MaybeKind)
Requires: cfg(any())
BadState(MaybeKind)
Requires: cfg(not(feature = "none"))
Trait Implementations§
Source§impl Clone for DeleteError
impl Clone for DeleteError
Source§fn clone(&self) -> DeleteError
fn clone(&self) -> DeleteError
Returns a copy 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 DeleteError
impl Debug for DeleteError
Source§impl ErrorKind for DeleteError
impl ErrorKind for DeleteError
Source§impl PartialEq for DeleteError
impl PartialEq for DeleteError
impl Copy for DeleteError
impl Eq for DeleteError
impl StructuralPartialEq for DeleteError
Auto Trait Implementations§
impl Freeze for DeleteError
impl RefUnwindSafe for DeleteError
impl Send for DeleteError
impl Sync for DeleteError
impl Unpin for DeleteError
impl UnwindSafe for DeleteError
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