atomic_maybe_uninit::raw

Trait AtomicStore

Source
pub trait AtomicStore: Primitive {
    // Required method
    unsafe fn atomic_store(
        dst: *mut MaybeUninit<Self>,
        val: MaybeUninit<Self>,
        order: Ordering,
    );
}
Expand description

Atomic store.

This trait is sealed and cannot be implemented for types outside of atomic-maybe-uninit.

Required Methods§

Source

unsafe fn atomic_store( dst: *mut MaybeUninit<Self>, val: MaybeUninit<Self>, order: Ordering, )

Stores a value into dst.

atomic_store takes an Ordering argument which describes the memory ordering of this operation. Possible values are SeqCst, Release and Relaxed.

§Safety

Behavior is undefined if any of the following conditions are violated:

  • If Self is greater than the pointer width, dst must be valid for both reads and writes. Otherwise, dst must be valid for writes.
  • dst must be properly aligned to the size of Self. (For example, if Self is u128, dst must be aligned to 16-byte even if the alignment of u128 is 8-byte.)
  • order must be SeqCst, Release, or Relaxed.

The rules for the validity of the pointer follow the rules applied to functions exposed by the standard library’s ptr module, except that concurrent atomic operations on dst are allowed if the pointer go through UnsafeCell::get.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl AtomicStore for i8

Source§

unsafe fn atomic_store( dst: *mut MaybeUninit<Self>, val: MaybeUninit<Self>, order: Ordering, )

Source§

impl AtomicStore for i16

Source§

unsafe fn atomic_store( dst: *mut MaybeUninit<Self>, val: MaybeUninit<Self>, order: Ordering, )

Source§

impl AtomicStore for i32

Source§

unsafe fn atomic_store( dst: *mut MaybeUninit<Self>, val: MaybeUninit<Self>, order: Ordering, )

Source§

impl AtomicStore for i64

Source§

unsafe fn atomic_store( dst: *mut MaybeUninit<Self>, val: MaybeUninit<Self>, order: Ordering, )

Source§

impl AtomicStore for isize

Source§

unsafe fn atomic_store( dst: *mut MaybeUninit<Self>, val: MaybeUninit<Self>, order: Ordering, )

Source§

impl AtomicStore for u8

Source§

unsafe fn atomic_store( dst: *mut MaybeUninit<Self>, val: MaybeUninit<Self>, order: Ordering, )

Source§

impl AtomicStore for u16

Source§

unsafe fn atomic_store( dst: *mut MaybeUninit<Self>, val: MaybeUninit<Self>, order: Ordering, )

Source§

impl AtomicStore for u32

Source§

unsafe fn atomic_store( dst: *mut MaybeUninit<Self>, val: MaybeUninit<Self>, order: Ordering, )

Source§

impl AtomicStore for u64

Source§

unsafe fn atomic_store( dst: *mut MaybeUninit<Self>, val: MaybeUninit<Self>, order: Ordering, )

Source§

impl AtomicStore for usize

Source§

unsafe fn atomic_store( dst: *mut MaybeUninit<Self>, val: MaybeUninit<Self>, order: Ordering, )

Implementors§