summaryrefslogtreecommitdiff
path: root/src/collection/guard.rs
diff options
context:
space:
mode:
authorBotahamec <botahamec@outlook.com>2024-05-21 19:17:11 -0400
committerBotahamec <botahamec@outlook.com>2024-05-21 19:17:11 -0400
commit86610b631c20832d160c1a38181080232a05b508 (patch)
treed10eaefdf7ecaa6add29c87ed4be77e231b8bfd1 /src/collection/guard.rs
parentcf49f2900fe3c7abd1bbadacfdc745d6b5bbc235 (diff)
Sharable API
Diffstat (limited to 'src/collection/guard.rs')
-rw-r--r--src/collection/guard.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/collection/guard.rs b/src/collection/guard.rs
index e3ffb21..b8561eb 100644
--- a/src/collection/guard.rs
+++ b/src/collection/guard.rs
@@ -1,18 +1,18 @@
use std::ops::{Deref, DerefMut};
-use crate::{key::Keyable, Lockable};
+use crate::key::Keyable;
use super::LockGuard;
-impl<'a, 'key: 'a, L: Lockable + 'a, Key: Keyable> Deref for LockGuard<'a, 'key, L, Key> {
- type Target = L::Guard<'a>;
+impl<'key, Guard, Key: Keyable> Deref for LockGuard<'key, Guard, Key> {
+ type Target = Guard;
fn deref(&self) -> &Self::Target {
&self.guard
}
}
-impl<'a, 'key: 'a, L: Lockable + 'a, Key: Keyable> DerefMut for LockGuard<'a, 'key, L, Key> {
+impl<'key, Guard, Key: Keyable> DerefMut for LockGuard<'key, Guard, Key> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.guard
}