pub enum ReadWriteMutexWriteLockError {
DeadlockConditionDetected,
UnknownError(i32),
}Variants§
Trait Implementations§
Source§impl Clone for ReadWriteMutexWriteLockError
impl Clone for ReadWriteMutexWriteLockError
Source§fn clone(&self) -> ReadWriteMutexWriteLockError
fn clone(&self) -> ReadWriteMutexWriteLockError
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 ReadWriteMutexWriteLockError
impl Debug for ReadWriteMutexWriteLockError
Source§impl From<ReadWriteMutexWriteLockError> for FileWriterGetLockError
impl From<ReadWriteMutexWriteLockError> for FileWriterGetLockError
Source§fn from(v: ReadWriteMutexWriteLockError) -> Self
fn from(v: ReadWriteMutexWriteLockError) -> Self
Converts to this type from the input type.
Source§impl From<ReadWriteMutexWriteLockError> for FileWriterTryLockError
impl From<ReadWriteMutexWriteLockError> for FileWriterTryLockError
Source§fn from(v: ReadWriteMutexWriteLockError) -> Self
fn from(v: ReadWriteMutexWriteLockError) -> Self
Converts to this type from the input type.
Source§impl From<ReadWriteMutexWriteLockError> for ReadWriteMutexError
impl From<ReadWriteMutexWriteLockError> for ReadWriteMutexError
Source§fn from(_: ReadWriteMutexWriteLockError) -> Self
fn from(_: ReadWriteMutexWriteLockError) -> Self
Converts to this type from the input type.
Source§impl Hash for ReadWriteMutexWriteLockError
impl Hash for ReadWriteMutexWriteLockError
Source§impl PartialEq for ReadWriteMutexWriteLockError
impl PartialEq for ReadWriteMutexWriteLockError
Source§fn eq(&self, other: &ReadWriteMutexWriteLockError) -> bool
fn eq(&self, other: &ReadWriteMutexWriteLockError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ReadWriteMutexWriteLockError
impl Eq for ReadWriteMutexWriteLockError
impl StructuralPartialEq for ReadWriteMutexWriteLockError
Auto Trait Implementations§
impl Freeze for ReadWriteMutexWriteLockError
impl RefUnwindSafe for ReadWriteMutexWriteLockError
impl Send for ReadWriteMutexWriteLockError
impl Sync for ReadWriteMutexWriteLockError
impl Unpin for ReadWriteMutexWriteLockError
impl UnwindSafe for ReadWriteMutexWriteLockError
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