#[repr(C, align(2))]pub struct AtomicI16_be(/* private fields */);
Expand description
A big-endian AtomicI16
with a guaranteed size and alignment of 2
.
Implementations§
source§impl AtomicI16_be
impl AtomicI16_be
source§impl AtomicI16_be
impl AtomicI16_be
sourcepub fn compare_exchange(
&self,
current: i16,
new: i16,
success: Ordering,
failure: Ordering,
) -> Result<i16, i16>
pub fn compare_exchange( &self, current: i16, new: i16, success: Ordering, failure: Ordering, ) -> Result<i16, i16>
Stores a value into the atomic integer if the current value is
the same as the current
value.
See AtomicI16::compare_exchange
for more information.
sourcepub fn compare_exchange_weak(
&self,
current: i16,
new: i16,
success: Ordering,
failure: Ordering,
) -> Result<i16, i16>
pub fn compare_exchange_weak( &self, current: i16, new: i16, success: Ordering, failure: Ordering, ) -> Result<i16, i16>
Stores a value into the atomic integer if the current value is
the same as the current
value.
See AtomicI16::compare_exchange_weak
for more information.
sourcepub fn fetch_add(&self, val: i16, order: Ordering) -> i16
pub fn fetch_add(&self, val: i16, order: Ordering) -> i16
Adds to the current value, returning the previous value.
Because addition is not an endian-agnostic operation, fetch_add
is implemented in terms of AtomicI16::compare_exchange_weak
on little-endian targets. This may result in worse performance on those targets.
See AtomicI16::fetch_add
for more information.
sourcepub fn fetch_and(&self, val: i16, order: Ordering) -> i16
pub fn fetch_and(&self, val: i16, order: Ordering) -> i16
Bitwise “and” with the current value.
See AtomicI16::fetch_and
for more information.
sourcepub fn fetch_max(&self, val: i16, order: Ordering) -> i16
pub fn fetch_max(&self, val: i16, order: Ordering) -> i16
Maximum with the current value.
Because maximum is not an endian-agnostic operation, fetch_max
is implemented in terms of AtomicI16::compare_exchange_weak
on little-endian targets. This may result in worse performance on those targets.
See AtomicI16::fetch_max
for more information.
sourcepub fn fetch_min(&self, val: i16, order: Ordering) -> i16
pub fn fetch_min(&self, val: i16, order: Ordering) -> i16
Minimum with the current value.
Because minimum is not an endian-agnostic operation, fetch_min
is implemented in terms of AtomicI16::compare_exchange_weak
on little-endian targets. This may result in worse performance on those targets.
See AtomicI16::fetch_min
for more information.
sourcepub fn fetch_nand(&self, val: i16, order: Ordering) -> i16
pub fn fetch_nand(&self, val: i16, order: Ordering) -> i16
Bitwise “nand” with the current value.
See AtomicI16::fetch_nand
for more information.
sourcepub fn fetch_or(&self, val: i16, order: Ordering) -> i16
pub fn fetch_or(&self, val: i16, order: Ordering) -> i16
Bitwise “or” with the current value.
See AtomicI16::fetch_or
for more information.
sourcepub fn fetch_sub(&self, val: i16, order: Ordering) -> i16
pub fn fetch_sub(&self, val: i16, order: Ordering) -> i16
Subtracts from the current value, returning the previous value.
Because subtraction is not an endian-agnostic operation, fetch_sub
is implemented in terms of AtomicI16::compare_exchange_weak
on little-endian targets. This may result in worse performance on those targets.
See AtomicI16::fetch_sub
for more information.
sourcepub fn fetch_update<F: FnMut(i16) -> Option<i16>>(
&self,
set_order: Ordering,
fetch_order: Ordering,
f: F,
) -> Result<i16, i16>
pub fn fetch_update<F: FnMut(i16) -> Option<i16>>( &self, set_order: Ordering, fetch_order: Ordering, f: F, ) -> Result<i16, i16>
Fetches the value, and applies a function to it that returns an
optional new value. Returns a Result
of Ok(previous_value)
if the function returned Some(_)
, else Err(previous_value)
.
See AtomicI16::fetch_update
for more information.
sourcepub fn fetch_xor(&self, val: i16, order: Ordering) -> i16
pub fn fetch_xor(&self, val: i16, order: Ordering) -> i16
Bitwise “xor” with the current value.
See AtomicI16::fetch_xor
for more information.
sourcepub fn into_inner(self) -> i16
pub fn into_inner(self) -> i16
Consumes the atomic and returns the contained value.
See AtomicI16::into_inner
for more information.
sourcepub fn load(&self, order: Ordering) -> i16
pub fn load(&self, order: Ordering) -> i16
Loads a value from the atomic integer.
See AtomicI16::load
for more information.
sourcepub fn store(&self, val: i16, order: Ordering)
pub fn store(&self, val: i16, order: Ordering)
Stores a value into the atomic integer.
See AtomicI16::store
for more information.