pub struct AtomicU16(_);
Expand description
Mock implementation of std::sync::atomic::AtomicU16
.
NOTE: Unlike std::sync::atomic::AtomicU16
, this type has a different in-memory representation than u16
.
Implementations
sourceimpl AtomicU16
impl AtomicU16
sourcepub fn with_mut<R>(&mut self, f: impl FnOnce(&mut u16) -> R) -> R
pub fn with_mut<R>(&mut self, f: impl FnOnce(&mut u16) -> R) -> R
Get access to a mutable reference to the inner value.
sourcepub unsafe fn unsync_load(&self) -> u16
pub unsafe fn unsync_load(&self) -> u16
Load the value without any synchronization.
Safety
An unsynchronized atomic load technically always has undefined behavior. However, if the atomic value is not currently visible by other threads, this should always be equivalent to a non-atomic load of an un-shared integer value.
sourcepub fn swap(&self, val: u16, order: Ordering) -> u16
pub fn swap(&self, val: u16, order: Ordering) -> u16
Stores a value into the atomic integer, returning the previous value.
sourcepub fn compare_and_swap(&self, current: u16, new: u16, order: Ordering) -> u16
pub fn compare_and_swap(&self, current: u16, new: u16, order: Ordering) -> u16
Stores a value into the atomic integer if the current value is the same as the current
value.
sourcepub fn compare_exchange(
&self,
current: u16,
new: u16,
success: Ordering,
failure: Ordering
) -> Result<u16, u16>
pub fn compare_exchange(
&self,
current: u16,
new: u16,
success: Ordering,
failure: Ordering
) -> Result<u16, u16>
Stores a value into the atomic if the current value is the same as the current
value.
sourcepub fn compare_exchange_weak(
&self,
current: u16,
new: u16,
success: Ordering,
failure: Ordering
) -> Result<u16, u16>
pub fn compare_exchange_weak(
&self,
current: u16,
new: u16,
success: Ordering,
failure: Ordering
) -> Result<u16, u16>
Stores a value into the atomic if the current value is the same as the current value.
sourcepub fn fetch_add(&self, val: u16, order: Ordering) -> u16
pub fn fetch_add(&self, val: u16, order: Ordering) -> u16
Adds to the current value, returning the previous value.
sourcepub fn fetch_sub(&self, val: u16, order: Ordering) -> u16
pub fn fetch_sub(&self, val: u16, order: Ordering) -> u16
Subtracts from the current value, returning the previous value.
sourcepub fn fetch_and(&self, val: u16, order: Ordering) -> u16
pub fn fetch_and(&self, val: u16, order: Ordering) -> u16
Bitwise “and” with the current value.
sourcepub fn fetch_nand(&self, val: u16, order: Ordering) -> u16
pub fn fetch_nand(&self, val: u16, order: Ordering) -> u16
Bitwise “nand” with the current value.
sourcepub fn fetch_xor(&self, val: u16, order: Ordering) -> u16
pub fn fetch_xor(&self, val: u16, order: Ordering) -> u16
Bitwise “xor” with the current value.
sourcepub fn fetch_max(&self, val: u16, order: Ordering) -> u16
pub fn fetch_max(&self, val: u16, order: Ordering) -> u16
Stores the maximum of the current and provided value, returning the previous value
sourcepub fn fetch_min(&self, val: u16, order: Ordering) -> u16
pub fn fetch_min(&self, val: u16, order: Ordering) -> u16
Stores the minimum of the current and provided value, returning the previous value
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AtomicU16
impl Send for AtomicU16
impl Sync for AtomicU16
impl Unpin for AtomicU16
impl UnwindSafe for AtomicU16
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more