Struct prometheus::core::AtomicU64 [−][src]
pub struct AtomicU64 { /* fields omitted */ }
A atomic unsigned integer.
Implementations
impl AtomicU64
[src]
impl AtomicU64
[src]pub fn compare_and_swap(
&self,
current: u64,
new: u64,
ordering: Ordering
) -> u64
[src]
&self,
current: u64,
new: u64,
ordering: Ordering
) -> u64
Get the value with the provided memory ordering.
pub fn inc_by_with_ordering(&self, delta: u64, ordering: Ordering)
[src]
Increment the value by a given amount with the provided memory ordering.
pub fn swap(&self, val: u64, ordering: Ordering) -> u64
[src]
Stores a value into the atomic integer, returning the previous value.