1 | pub(crate) use std::sync::atomic::{AtomicU64, Ordering}; |
---|---|
2 | |
3 | /// Alias `AtomicU64` to `StaticAtomicU64` |
4 | pub(crate) type StaticAtomicU64 = AtomicU64; |
5 |
Definitions
Learn Rust with the experts
Find out more
1 | pub(crate) use std::sync::atomic::{AtomicU64, Ordering}; |
---|---|
2 | |
3 | /// Alias `AtomicU64` to `StaticAtomicU64` |
4 | pub(crate) type StaticAtomicU64 = AtomicU64; |
5 |