summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorBotahamec <botahamec@outlook.com>2024-09-26 22:12:52 -0400
committerBotahamec <botahamec@outlook.com>2024-09-26 22:12:52 -0400
commit00991791bba57a8757ba207a573e360224f43e6e (patch)
treeb108bf3172ee31d676da8e6418d1a5e31aa7394e /src/lib.rs
parent4fd5136e0c0ec9cc92bb2b5735c0b3b68acdd755 (diff)
Docs and improvements
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d034ffe..ec43121 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -187,6 +187,9 @@ pub use mutex::SpinLock;
/// [`BoxedLockCollection`]: collection::BoxedLockCollection
pub type LockCollection<L> = collection::BoxedLockCollection<L>;
+/// A re-export for [`poisonable::Poisonable`]
+pub type Poisonable<L> = poisonable::Poisonable<L>;
+
/// A mutual exclusion primitive useful for protecting shared data, which cannot deadlock.
///
/// By default, this uses `parking_lot` as a backend.