//! Single-threaded (`!Send + !Sync`) primitives.
//!
//! `Bytes` / `BytesMut` use a `Cell`-based refcount instead of `Arc`,
//! so cloning is one cache-line bump instead of an atomic RMW. The
//! trade-off is that every consumer of these buffers must live on the
//! same thread — the model used by per-thread `io_uring` reactors.
//!
//! Sibling primitives (`LocalCell`, `AlwaysInit`, `Slab`, `MmapSlab`,
//! `SlotId`, `InlineFuture`, `channel`) follow the same paradigm:
//! thread-pinned, no atomics, no cross-core sharing. dambi pulls them
//! together as the storage layer for any shared-nothing runtime.
pub use ;
pub use ;
pub use ;
pub use InlineFuture;
pub use LateBound;
pub use ;
pub use MmapSlab;
pub use ;
pub use ;
pub use WakerSet;