pub enum ReadWriteMutexReadLockError {
MaximumAmountOfReadLocksAcquired,
DeadlockConditionDetected,
UnknownError(i32),
}Variants§
Trait Implementations§
Source§impl Clone for ReadWriteMutexReadLockError
impl Clone for ReadWriteMutexReadLockError
Source§fn clone(&self) -> ReadWriteMutexReadLockError
fn clone(&self) -> ReadWriteMutexReadLockError
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 ReadWriteMutexReadLockError
impl Debug for ReadWriteMutexReadLockError
Source§impl From<ReadWriteMutexReadLockError> for FileLockStateError
impl From<ReadWriteMutexReadLockError> for FileLockStateError
Source§fn from(v: ReadWriteMutexReadLockError) -> Self
fn from(v: ReadWriteMutexReadLockError) -> Self
Converts to this type from the input type.
Source§impl From<ReadWriteMutexReadLockError> for FileReaderGetLockError
impl From<ReadWriteMutexReadLockError> for FileReaderGetLockError
Source§fn from(v: ReadWriteMutexReadLockError) -> Self
fn from(v: ReadWriteMutexReadLockError) -> Self
Converts to this type from the input type.
Source§impl From<ReadWriteMutexReadLockError> for FileReaderTryLockError
impl From<ReadWriteMutexReadLockError> for FileReaderTryLockError
Source§fn from(v: ReadWriteMutexReadLockError) -> Self
fn from(v: ReadWriteMutexReadLockError) -> Self
Converts to this type from the input type.
Source§impl From<ReadWriteMutexReadLockError> for ReadWriteMutexError
impl From<ReadWriteMutexReadLockError> for ReadWriteMutexError
Source§fn from(_: ReadWriteMutexReadLockError) -> Self
fn from(_: ReadWriteMutexReadLockError) -> Self
Converts to this type from the input type.
Source§impl Hash for ReadWriteMutexReadLockError
impl Hash for ReadWriteMutexReadLockError
impl Copy for ReadWriteMutexReadLockError
impl Eq for ReadWriteMutexReadLockError
impl StructuralPartialEq for ReadWriteMutexReadLockError
Auto Trait Implementations§
impl Freeze for ReadWriteMutexReadLockError
impl RefUnwindSafe for ReadWriteMutexReadLockError
impl Send for ReadWriteMutexReadLockError
impl Sync for ReadWriteMutexReadLockError
impl Unpin for ReadWriteMutexReadLockError
impl UnwindSafe for ReadWriteMutexReadLockError
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