kvarn::prelude::threading::atomic

Struct AtomicI32

1.34.0 ยท source
#[repr(C, align(4))]
pub struct AtomicI32 { /* private fields */ }
Expand description

An integer type which can be safely shared between threads.

This type has the same size and bit validity as the underlying integer type, i32. However, the alignment of this type is always equal to its size, even on targets where i32 has a lesser alignment.

For more about the differences between atomic types and non-atomic types as well as information about the portability of this type, please see the module-level documentation.

Note: This type is only available o