oden/third-party/vendor/loom/src/cell/mod.rs
2024-03-08 11:03:01 -08:00

8 lines
183 B
Rust

//! Shareable mutable containers.
#[allow(clippy::module_inception)]
mod cell;
mod unsafe_cell;
pub use self::cell::Cell;
pub use self::unsafe_cell::{ConstPtr, MutPtr, UnsafeCell};