From 00991791bba57a8757ba207a573e360224f43e6e Mon Sep 17 00:00:00 2001 From: Botahamec Date: Thu, 26 Sep 2024 22:12:52 -0400 Subject: Docs and improvements --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/lib.rs') 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 = collection::BoxedLockCollection; +/// A re-export for [`poisonable::Poisonable`] +pub type Poisonable = poisonable::Poisonable; + /// A mutual exclusion primitive useful for protecting shared data, which cannot deadlock. /// /// By default, this uses `parking_lot` as a backend. -- cgit v1.2.3