1
2
3
4
5
6
7
8
9
#![cfg_attr(docsrs, feature(doc_cfg))]

/// Structurally-pinned wrappers for `std::sync`'s Mutex types.
pub mod std;

/// Structurally-pinned wrappers for `parking_lot`'s Mutex types.
#[cfg_attr(docsrs, doc(cfg(feature = "parking_lot")))]
#[cfg(feature = "parking_lot")]
pub mod parking_lot;