1.0.0[−][src]Enum boolean_enums::lstd::sync::atomic::Ordering
Atomic memory orderings
Memory orderings specify the way atomic operations synchronize memory.
In its weakest Relaxed
, only the memory directly touched by the
operation is synchronized. On the other hand, a store-load pair of SeqCst
operations synchronize other memory while additionally preserving a total order of such
operations across all threads.
Rust's memory orderings are the same as LLVM's.
For more information see the nomicon.
Variants (Non-exhaustive)
Relaxed
No ordering constraints, only atomic operations.
Corresponds to LLVM's Monotonic
ordering.
Release
When coupled with a store, all previous operations become ordered
before any load of this value with Acquire
(or stronger) ordering.
In particular, all previous writes become visible to all threads
that perform an Acquire
(or stronger) load of this value.
Notice that using this ordering for an operation that combines loads
and stores leads to a Relaxed
load operation!
This ordering is only applicable for operations that can perform a store.
Corresponds to LLVM's Release
ordering.
Acquire
When coupled with a load, if the loaded value was written by a store operation with
Release
(or stronger) ordering, then all subsequent operations
become ordered after that store. In particular, all subsequent loads will see data
written before the store.
Notice that using this ordering for an operation that combines loads
and stores leads to a Relaxed
store operation!
This ordering is only applicable for operations that can perform a load.
Corresponds to LLVM's Acquire
ordering.
AcqRel
Has the effects of both Acquire
and Release
together:
For loads it uses Acquire
ordering. For stores it uses the Release
ordering.
Notice that in the case of compare_and_swap
, it is possible that the operation ends up
not performing any store and hence it has just Acquire
ordering. However,
AcqRel
will never perform Relaxed
accesses.
This ordering is only applicable for operations that combine both loads and stores.
Corresponds to LLVM's AcquireRelease
ordering.
SeqCst
Like Acquire
/Release
/AcqRel
(for load, store, and load-with-store
operations, respectively) with the additional guarantee that all threads see all
sequentially consistent operations in the same order.
Corresponds to LLVM's SequentiallyConsistent
ordering.
Trait Implementations
impl Clone for Ordering
[src]
impl Clone for Ordering
fn clone(&self) -> Ordering | [src] |
fn clone_from(&mut self, source: &Self) | [src] |
Performs copy-assignment from source
. Read more
impl Eq for Ordering
[src]
impl Eq for Ordering
impl PartialEq<Ordering> for Ordering
[src]
impl PartialEq<Ordering> for Ordering
fn eq(&self, other: &Ordering) -> bool | [src] |
| [src] |
This method tests for !=
.
impl Hash for Ordering
[src]
impl Hash for Ordering
fn hash<__H>(&self, state: &mut __H) where | [src] |
fn hash_slice<H>(data: &[Self], state: &mut H) where | 1.3.0 [src] |
Feeds a slice of this type into the given [Hasher
]. Read more
impl Copy for Ordering
[src]
impl Copy for Ordering
impl Debug for Ordering
[src]
impl Debug for Ordering
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error> | [src] |
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId | [src] |
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error> | [src] |
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
ⓘImportant traits for &'a mut W
fn borrow_mut(&mut self) -> &mut T | [src] |