summaryrefslogtreecommitdiff
path: root/src/rwlock
diff options
context:
space:
mode:
authorMica White <botahamec@gmail.com>2024-12-25 22:49:42 -0500
committerMica White <botahamec@gmail.com>2024-12-26 10:54:31 -0500
commit129c13c21254ca104bddf020170edaca1fb7107d (patch)
treef6904fc15a315d9962c64f30ba73bc73b1969fcf /src/rwlock
parent311842d28d1fbb6da945f0d98f1655f77a58abf9 (diff)
Implement common traits
Diffstat (limited to 'src/rwlock')
-rw-r--r--src/rwlock/read_guard.rs57
-rw-r--r--src/rwlock/write_guard.rs57
2 files changed, 114 insertions, 0 deletions
diff --git a/src/rwlock/read_guard.rs b/src/rwlock/read_guard.rs
index 0668dca..45d0bd9 100644
--- a/src/rwlock/read_guard.rs
+++ b/src/rwlock/read_guard.rs
@@ -1,4 +1,5 @@
use std::fmt::{Debug, Display};
+use std::hash::Hash;
use std::marker::PhantomData;
use std::ops::Deref;
@@ -9,6 +10,32 @@ use crate::lockable::RawLock;
use super::{RwLock, RwLockReadGuard, RwLockReadRef};
+impl<T: PartialEq + ?Sized, R: RawRwLock> PartialEq for RwLockReadRef<'_, T, R> {
+ fn eq(&self, other: &Self) -> bool {
+ self.deref().eq(&**other)
+ }
+}
+
+impl<T: Eq + ?Sized, R: RawRwLock> Eq for RwLockReadRef<'_, T, R> {}
+
+impl<T: PartialOrd + ?Sized, R: RawRwLock> PartialOrd for RwLockReadRef<'_, 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 RwLockReadRef<'_, T, R> {
+ fn cmp(&self, other: &Self) -> std::cmp::Ordering {
+ self.deref().cmp(&**other)
+ }
+}
+
+impl<T: Hash + ?Sized, R: RawRwLock> Hash for RwLockReadRef<'_, 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 RwLockReadRef<'a, T, R> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
Debug::fmt(&**self, f)
@@ -55,6 +82,36 @@ impl<'a, T: ?Sized + 'a, R: RawRwLock> RwLockReadRef<'a, T, R> {
}
}
+impl<T: PartialEq + ?Sized, R: RawRwLock, Key: Keyable> PartialEq
+ for RwLockReadGuard<'_, '_, T, Key, R>
+{
+ fn eq(&self, other: &Self) -> bool {
+ self.deref().eq(&**other)
+ }
+}
+
+impl<T: Eq + ?Sized, R: RawRwLock, Key: Keyable> Eq for RwLockReadGuard<'_, '_, T, Key, R> {}
+
+impl<T: PartialOrd + ?Sized, R: RawRwLock, Key: Keyable> PartialOrd
+ for RwLockReadGuard<'_, '_, 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 RwLockReadGuard<'_, '_, 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 RwLockReadGuard<'_, '_, 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 RwLockReadGuard<'a, 'key, T, Key, R>
{
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>
{