1 2 3 4 5 6 7 8 9 10 11 12
#![forbid(unsafe_code)] //! Crash-safe **whole-file** write decorator. //! //! Production code lives in `core`; unit-tests live in `tests`. //! See [`Atomic`] for the lifecycle contract. pub(crate) mod core; #[cfg(test)] mod tests; pub use core::Atomic;