atomic_types/
lib.rs

1//! Simple crate that adds an `AtomicallySized` trait and an associated trait called
2//! `Atomic<T>` that makes generic containers accross atomic types easier to implement.
3
4#![no_std]
5
6mod impls;
7mod traits;
8
9pub use impls::*;
10pub use traits::*;