pub struct AtomicF64 { /* fields omitted */ }
Store the value, returning the previous value.
The numeric type associated with this atomic.
Create a new atomic value.
fn set(&self, val: Self::T)[src]
Set the value to the provided value.
fn get(&self) -> Self::T[src]
fn inc_by(&self, delta: Self::T)[src]
Increment the value by a given amount.
fn dec_by(&self, delta: Self::T)[src]
Decrement the value by a given amount.
Formats the value using the given formatter. Read more
impl<T> Any for T where
T: 'static + ?Sized, [src]
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>, [src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.