diff options
| author | Mica White <botahamec@outlook.com> | 2026-08-26 20:46:31 -0400 |
|---|---|---|
| committer | Mica White <botahamec@outlook.com> | 2026-08-26 20:46:31 -0400 |
| commit | 55b3a2425b242fbc5c6e471f220eeb8b949e8751 (patch) | |
| tree | 5ceb7910b60cc7331024b7ce1d49ec259e0302a8 /src/lib.rs | |
| parent | 6f6e030ea7edb9d155ebf21b5d42936c20801b50 (diff) | |
Add tests
Diffstat (limited to 'src/lib.rs')
| -rwxr-xr-x | src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -198,7 +198,7 @@ mod handle_unwind; mod key; pub mod collection; -pub mod iterator; +pub mod context; pub mod lockable; pub mod mutex; pub mod poisonable; @@ -219,6 +219,9 @@ pub use mutex::SpinLock; /// [`BoxedLockCollection`]: collection::BoxedLockCollection pub type LockCollection<L> = collection::BoxedLockCollection<L>; +/// A re-export for [`context::LockContext`] +pub type LockContext<'l, L> = context::LockContext<'l, L>; + /// A re-export for [`poisonable::Poisonable`] pub type Poisonable<L> = poisonable::Poisonable<L>; |
