AtomicI128

Type Alias AtomicI128 

Source
pub type AtomicI128 = AtomicI128;
Available on crate feature primitives only.
Expand description

An atomic i128.

This is either an alias to the type in core::sync::atomic, or, if not available1, a spinlock-based fallback type.

Note: Because 128-bit atomics are unstable, this type is always a spinlock-based fallback. This may change in a future version of this crate.


  1. If an appropriate type exists in core::sync::atomic, but compare-and-swap operations are not provided for it (i.e., only loads and stores are supported), it is still considered to be “not available” for the purposes of this crate. 

Aliased Type§

pub struct AtomicI128 { /* private fields */ }