pinned_mutex/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3/// Structurally-pinned wrappers for `std::sync`'s Mutex types.
4pub mod std;
5
6/// Structurally-pinned wrappers for `parking_lot`'s Mutex types.
7#[cfg_attr(docsrs, doc(cfg(feature = "parking_lot")))]
8#[cfg(feature = "parking_lot")]
9pub mod parking_lot;