Type Alias atomic_int::AtomicPtr

source ·
pub type AtomicPtr<T> = AtomicPtr<T>;
Available on crate feature primitives only.
Expand description

An atomic *mut T.

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

Aliased Type§

struct AtomicPtr<T> { /* private fields */ }