diff options
Diffstat (limited to 'src/rwlock/write_guard.rs')
| -rw-r--r-- | src/rwlock/write_guard.rs | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/rwlock/write_guard.rs b/src/rwlock/write_guard.rs index 31ed14a..62f7762 100644 --- a/src/rwlock/write_guard.rs +++ b/src/rwlock/write_guard.rs @@ -1,4 +1,5 @@ use std::fmt::{Debug, Display}; +use std::hash::Hash; use std::marker::PhantomData; use std::ops::{Deref, DerefMut}; @@ -9,6 +10,32 @@ use crate::lockable::RawLock; use super::{RwLock, RwLockWriteGuard, RwLockWriteRef}; +impl<T: PartialEq + ?Sized, R: RawRwLock> PartialEq for RwLockWriteRef<'_, T, R> { + fn eq(&self, other: &Self) -> bool { + self.deref().eq(&**other) + } +} + +impl<T: Eq + ?Sized, R: RawRwLock> Eq for RwLockWriteRef<'_, T, R> {} + +impl<T: PartialOrd + ?Sized, R: RawRwLock> PartialOrd for RwLockWriteRef<'_, T, R> { + fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> { + self.deref().partial_cmp(&**other) + } +} + +impl<T: Ord + ?Sized, R: RawRwLock> Ord for RwLockWriteRef<'_, T, R> { + fn cmp(&self, other: &Self) -> std::cmp::Ordering { + self.deref().cmp(&**other) + } +} + +impl<T: Hash + ?Sized, R: RawRwLock> Hash for RwLockWriteRef<'_, T, R> { + fn hash<H: std::hash::Hasher>(&self, state: &mut H) { + self.deref().hash(state) + } +} + impl<'a, T: Debug + ?Sized + 'a, R: RawRwLock> Debug for RwLockWriteRef<'a, T, R> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { Debug::fmt(&**self, f) @@ -70,6 +97,36 @@ impl<'a, T: ?Sized + 'a, R: RawRwLock> RwLockWriteRef<'a, T, R> { } } +impl<T: PartialEq + ?Sized, R: RawRwLock, Key: Keyable> PartialEq + for RwLockWriteGuard<'_, '_, T, Key, R> +{ + fn eq(&self, other: &Self) -> bool { + self.deref().eq(&**other) + } +} + +impl<T: Eq + ?Sized, R: RawRwLock, Key: Keyable> Eq for RwLockWriteGuard<'_, '_, T, Key, R> {} + +impl<T: PartialOrd + ?Sized, R: RawRwLock, Key: Keyable> PartialOrd + for RwLockWriteGuard<'_, '_, T, Key, R> +{ + fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> { + self.deref().partial_cmp(&**other) + } +} + +impl<T: Ord + ?Sized, R: RawRwLock, Key: Keyable> Ord for RwLockWriteGuard<'_, '_, T, Key, R> { + fn cmp(&self, other: &Self) -> std::cmp::Ordering { + self.deref().cmp(&**other) + } +} + +impl<T: Hash + ?Sized, R: RawRwLock, Key: Keyable> Hash for RwLockWriteGuard<'_, '_, T, Key, R> { + fn hash<H: std::hash::Hasher>(&self, state: &mut H) { + self.deref().hash(state) + } +} + impl<'a, 'key, T: Debug + ?Sized + 'a, Key: Keyable + 'key, R: RawRwLock> Debug for RwLockWriteGuard<'a, 'key, T, Key, R> { |
