Struct rend::AtomicU16_be

source ·
#[repr(C, align(2))]
pub struct AtomicU16_be(/* private fields */);
Expand description

A big-endian AtomicU16 with a guaranteed size and alignment of 2.

Implementations§

source§

impl AtomicU16_be

source

pub const fn new(value: u16) -> Self

Returns a AtomicU16_be containing value.

source§

impl AtomicU16_be

source

pub fn compare_exchange( &self, current: u16, new: u16, success: Ordering, failure: Ordering, ) -> Result<u16, u16>

Stores a value into the atomic integer if the current value is the same as the current value.

See AtomicU16::compare_exchange for more information.

source

pub fn compare_exchange_weak( &self, current: u16, new: u16, success: Ordering, failure: Ordering, ) -> Result<u16, u16>

Stores a value into the atomic integer if the current value is the same as the current value.

See AtomicU16::compare_exchange_weak for more information.

source

pub fn fetch_add(&self, val: u16, order: Ordering) -> u16

Adds to the current value, returning the previous value.

Because addition is not an endian-agnostic operation, fetch_add is implemented in terms of AtomicU16::compare_exchange_weak on little-endian targets. This may result in worse performance on those targets.

See AtomicU16::fetch_add for more information.

source

pub fn fetch_and(&self, val: u16, order: Ordering) -> u16

Bitwise “and” with the current value.

See AtomicU16::fetch_and for more information.

source

pub fn fetch_max(&self, val: u16, order: Ordering) -> u16

Maximum with the current value.

Because maximum is not an endian-agnostic operation, fetch_max is implemented in terms of AtomicU16::compare_exchange_weak on little-endian targets. This may result in worse performance on those targets.

See AtomicU16::fetch_max for more information.

source

pub fn fetch_min(&self, val: u16, order: Ordering) -> u16

Minimum with the current value.

Because minimum is not an endian-agnostic operation, fetch_min is implemented in terms of AtomicU16::compare_exchange_weak on little-endian targets. This may result in worse performance on those targets.

See AtomicU16::fetch_min for more information.

source

pub fn fetch_nand(&self, val: u16, order: Ordering) -> u16

Bitwise “nand” with the current value.

See AtomicU16::fetch_nand for more information.

source

pub fn fetch_or(&self, val: u16, order: Ordering) -> u16

Bitwise “or” with the current value.

See AtomicU16::fetch_or for more information.

source

pub fn fetch_sub(&self, val: u16, order: Ordering) -> u16

Subtracts from the current value, returning the previous value.

Because subtraction is not an endian-agnostic operation, fetch_sub is implemented in terms of AtomicU16::compare_exchange_weak on little-endian targets. This may result in worse performance on those targets.

See AtomicU16::fetch_sub for more information.

source

pub fn fetch_update<F: FnMut(u16) -> Option<u16>>( &self, set_order: Ordering, fetch_order: Ordering, f: F, ) -> Result<u16, u16>

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 AtomicU16::fetch_update for more information.

source

pub fn fetch_xor(&self, val: u16, order: Ordering) -> u16

Bitwise “xor” with the current value.

See AtomicU16::fetch_xor for more information.

source

pub fn into_inner(self) -> u16

Consumes the atomic and returns the contained value.

See AtomicU16::into_inner for more information.

source

pub fn load(&self, order: Ordering) -> u16

Loads a value from the atomic integer.

See AtomicU16::load for more information.

source

pub fn store(&self, val: u16, order: Ordering)

Stores a value into the atomic integer.

See AtomicU16::store for more information.

source

pub fn swap(&self, val: u16, order: Ordering) -> u16

Stores a value into the atomic integer, returning the previous value.

See AtomicU16::swap for more information.

Trait Implementations§

source§

impl Debug for AtomicU16_be

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for AtomicU16_be

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<u16> for AtomicU16_be

source§

fn from(value: u16) -> Self

Converts to this type from the input type.
source§

impl FromBytes for AtomicU16_be
where AtomicU16: FromBytes,

§

fn mut_from_bytes( source: &mut [u8], ) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>
where Self: IntoBytes + KnownLayout,

Interprets the given source as a &mut Self. Read more
§

fn mut_from_prefix( source: &mut [u8], ) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>
where Self: IntoBytes + KnownLayout,

Interprets the prefix of the given source as a &mut Self without copying. Read more
§

fn mut_from_suffix( source: &mut [u8], ) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>
where Self: IntoBytes + KnownLayout,

Interprets the suffix of the given source as a &mut Self without copying. Read more
§

fn read_from_bytes(source: &[u8]) -> Result<Self, SizeError<&[u8], Self>>
where Self: Sized,

Reads a copy of Self from the given source. Read more
§

fn read_from_prefix( source: &[u8], ) -> Result<(Self, &[u8]), SizeError<&[u8], Self>>
where Self: Sized,

Reads a copy of Self from the prefix of the given source. Read more
§

fn read_from_suffix( source: &[u8], ) -> Result<(&[u8], Self), SizeError<&[u8], Self>>
where Self: Sized,

Reads a copy of Self from the suffix of the given source. Read more
source§

impl FromZeros for AtomicU16_be
where AtomicU16: FromZeros,

§

fn zero(&mut self)

Overwrites self with zeros. Read more
§

fn new_zeroed() -> Self
where Self: Sized,

Creates an instance of Self from zeroed bytes. Read more
source§

impl IntoBytes for AtomicU16_be
where AtomicU16: IntoBytes, (): PaddingFree<AtomicU16_be, { _ }>,

§

fn as_mut_bytes(&mut self) -> &mut [u8]
where Self: FromBytes,

Gets the bytes of this value mutably. Read more
source§

impl KnownLayout for AtomicU16_be
where AtomicU16: KnownLayout,

§

type PointerMetadata = <AtomicU16 as KnownLayout>::PointerMetadata

The type of metadata stored in a pointer to Self. Read more
source§

impl TryFromBytes for AtomicU16_be
where AtomicU16: TryFromBytes,

§

fn try_mut_from_bytes( bytes: &mut [u8], ) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>
where Self: KnownLayout,

Attempts to interpret the given source as a &mut Self without copying. Read more
§

fn try_mut_from_prefix( source: &mut [u8], ) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>
where Self: KnownLayout,

Attempts to interpret the prefix of the given source as a &mut Self. Read more
§

fn try_mut_from_suffix( source: &mut [u8], ) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>
where Self: KnownLayout,

Attempts to interpret the suffix of the given source as a &mut Self. Read more
§

fn try_read_from_bytes( source: &[u8], ) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>
where Self: Sized,

Attempts to read the given source as a Self. Read more
§

fn try_read_from_prefix( source: &[u8], ) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>
where Self: Sized,

Attempts to read a Self from the prefix of the given source. Read more
§

fn try_read_from_suffix( source: &[u8], ) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>
where Self: Sized,

Attempts to read a Self from the suffix of the given source. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.