1pub(crate) use std::sync::atomic::{AtomicU64, Ordering}; 2 3/// Alias `AtomicU64` to `StaticAtomicU64` 4pub(crate) type StaticAtomicU64 = AtomicU64;