[][src]Trait radium::RadiumU16

pub trait RadiumU16 {
    fn new(v: u16) -> Self;
fn fence(order: Ordering);
fn get_mut(&mut self) -> &mut u16;
fn into_inner(self) -> u16;
fn load(&self, order: Ordering) -> u16;
fn store(&self, val: u16, order: Ordering);
fn swap(&self, val: u16, order: Ordering) -> u16;
fn compare_and_swap(&self, current: u16, new: u16, order: Ordering) -> u16;
fn compare_exchange(
        &self,
        current: u16,
        new: u16,
        success: Ordering,
        failure: Ordering
    ) -> Result<u16, u16>;
fn compare_exchange_weak(
        &self,
        current: u16,
        new: u16,
        success: Ordering,
        failure: Ordering
    ) -> Result<u16, u16>;
fn fetch_and(&self, val: u16, order: Ordering) -> u16;
fn fetch_nand(&self, val: u16, order: Ordering) -> u16;
fn fetch_or(&self, val: u16, order: Ordering) -> u16;
fn fetch_xor(&self, val: u16, order: Ordering) -> u16;
fn fetch_add(&self, val: u16, order: Ordering) -> u16;
fn fetch_sub(&self, val: u16, order: Ordering) -> u16; }

A maybe-atomic shared mutable u16.

This trait is implemented by both AtomicU16 and Cell<u16>, providing a consistent interface for interacting with the two types.

Required methods

fn new(v: u16) -> Self

Creates a new value of this type.

fn fence(order: Ordering)

If the underlying value is atomic, calls fence with the given Ordering. Otherwise, does nothing.

See also: fence

fn get_mut(&mut self) -> &mut u16

Returns a mutable reference to the underlying value.

This is safe because the mutable reference guarantees that no other references exist to this value.

fn into_inner(self) -> u16

Consumes and returns the contained value.

This is safe as passing by value ensures no other references exist.

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

Load a value from this object.

Ordering arguments are ignored by non-atomic types.

See also: AtomicU16::load

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

Store a value in this object.

Ordering arguments are ignored by non-atomic types.

See also: AtomicU16::store

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

Swap with the value stored in this object.

Ordering arguments are ignored by non-atomic types.

See also: AtomicU16::swap

fn compare_and_swap(&self, current: u16, new: u16, order: Ordering) -> u16

Stores a value into this object if the current value is the same as the current value.

The return value is always the previous value. If it is equal to current, then the value was updated.

Ordering arguments are ignored by non-atomic types.

See also: AtomicU16::compare_and_swap

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

Stores a value into this object if the current value is the same as the current value.

The return value is a result indicating whether the new value was written and containing the previous value. On success this value is guaranteed to be equal to current.

Ordering arguments are ignored by non-atomic types.

See also: AtomicU16::compare_exchange

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

Stores a value into this object if the current value is the same as the current value.

Unlike compare_exchange, this function is allowed to spuriously fail even when the comparison succeeds, which can result in more efficient code on some platforms. The return value is a result indicating whether the new value was written and containing the previous value.

Ordering arguments are ignored by non-atomic types.

See also: AtomicU16::compare_exchange_weak

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

Performs a bitwise "and" on the current value and the argument val, snd sets the new value to the result.

Returns the previous value.

Ordering arguments are ignored by non-atomic types.

See also: AtomicU16::fetch_and

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

Performs a bitwise "nand" on the current value and the argument val, snd sets the new value to the result.

Returns the previous value.

Ordering arguments are ignored by non-atomic types.

See also: AtomicU16::fetch_nand

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

Performs a bitwise "or" on the current value and the argument val, snd sets the new value to the result.

Returns the previous value.

Ordering arguments are ignored by non-atomic types.

See also: AtomicU16::fetch_or

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

Performs a bitwise "xor" on the current value and the argument val, snd sets the new value to the result.

Returns the previous value.

Ordering arguments are ignored by non-atomic types.

See also: AtomicU16::fetch_xor

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

Increments the current value by val, wrapping on overflow.

Returns the previous value.

Ordering arguments are ignored by non-atomic types.

See also: AtomicU16::fetch_add

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

Decrements the current value by val, wrapping on overflow.

Returns the previous value.

Ordering arguments are ignored by non-atomic types.

See also: AtomicU16::fetch_sub

Loading content...

Implementations on Foreign Types

impl RadiumU16 for AtomicU16[src]

impl RadiumU16 for Cell<u16>[src]

Loading content...

Implementors

Loading content...