summaryrefslogtreecommitdiff
path: root/src/collection/owned.rs
diff options
context:
space:
mode:
authorBotahamec <botahamec@outlook.com>2024-05-22 17:27:35 -0400
committerBotahamec <botahamec@outlook.com>2024-05-22 17:27:35 -0400
commitef191a3e8ecf4093fcd08036e35012c1af173a08 (patch)
tree9a6986986ad8392ae147c64c436214fa290773d7 /src/collection/owned.rs
parentebbe3cfce28914d776f3e5f89894fab50911c57e (diff)
Documentation for types
Diffstat (limited to 'src/collection/owned.rs')
-rw-r--r--src/collection/owned.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/collection/owned.rs b/src/collection/owned.rs
index eb5e03a..d77d568 100644
--- a/src/collection/owned.rs
+++ b/src/collection/owned.rs
@@ -1,10 +1,11 @@
use std::marker::PhantomData;
-use crate::{lockable::Lock, Keyable, Lockable, OwnedLockable, Sharable};
+use crate::lockable::{Lockable, OwnedLockable, RawLock, Sharable};
+use crate::Keyable;
use super::{LockGuard, OwnedLockCollection};
-fn get_locks<L: Lockable>(data: &L) -> Vec<&dyn Lock> {
+fn get_locks<L: Lockable>(data: &L) -> Vec<&dyn RawLock> {
let mut locks = Vec::new();
data.get_ptrs(&mut locks);
locks
@@ -15,7 +16,7 @@ unsafe impl<L: Lockable> Lockable for OwnedLockCollection<L> {
type ReadGuard<'g> = L::ReadGuard<'g> where Self: 'g;
- fn get_ptrs<'a>(&'a self, ptrs: &mut Vec<&'a dyn Lock>) {
+ fn get_ptrs<'a>(&'a self, ptrs: &mut Vec<&'a dyn RawLock>) {
self.data.get_ptrs(ptrs)
}