From 129c13c21254ca104bddf020170edaca1fb7107d Mon Sep 17 00:00:00 2001 From: Mica White Date: Wed, 25 Dec 2024 22:49:42 -0500 Subject: Implement common traits --- src/rwlock/write_guard.rs | 57 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) (limited to 'src/rwlock/write_guard.rs') 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 PartialEq for RwLockWriteRef<'_, T, R> { + fn eq(&self, other: &Self) -> bool { + self.deref().eq(&**other) + } +} + +impl Eq for RwLockWriteRef<'_, T, R> {} + +impl PartialOrd for RwLockWriteRef<'_, T, R> { + fn partial_cmp(&self, other: &Self) -> Option { + self.deref().partial_cmp(&**other) + } +} + +impl Ord for RwLockWriteRef<'_, T, R> { + fn cmp(&self, other: &Self) -> std::cmp::Ordering { + self.deref().cmp(&**other) + } +} + +impl Hash for RwLockWriteRef<'_, T, R> { + fn hash(&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 PartialEq + for RwLockWriteGuard<'_, '_, T, Key, R> +{ + fn eq(&self, other: &Self) -> bool { + self.deref().eq(&**other) + } +} + +impl Eq for RwLockWriteGuard<'_, '_, T, Key, R> {} + +impl PartialOrd + for RwLockWriteGuard<'_, '_, T, Key, R> +{ + fn partial_cmp(&self, other: &Self) -> Option { + self.deref().partial_cmp(&**other) + } +} + +impl Ord for RwLockWriteGuard<'_, '_, T, Key, R> { + fn cmp(&self, other: &Self) -> std::cmp::Ordering { + self.deref().cmp(&**other) + } +} + +impl Hash for RwLockWriteGuard<'_, '_, T, Key, R> { + fn hash(&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> { -- cgit v1.2.3