diff options
| author | Botahamec <botahamec@outlook.com> | 2024-09-26 22:12:52 -0400 |
|---|---|---|
| committer | Botahamec <botahamec@outlook.com> | 2024-09-26 22:12:52 -0400 |
| commit | 00991791bba57a8757ba207a573e360224f43e6e (patch) | |
| tree | b108bf3172ee31d676da8e6418d1a5e31aa7394e /src/lib.rs | |
| parent | 4fd5136e0c0ec9cc92bb2b5735c0b3b68acdd755 (diff) | |
Docs and improvements
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |
