[][src]Trait radium::RadiumI8

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

A maybe-atomic shared mutable i8.

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

Required methods

fn new(v: i8) -> 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 i8

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) -> i8

Consumes and returns the contained value.

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

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

Load a value from this object.

Ordering arguments are ignored by non-atomic types.

See also: AtomicI8::load

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

Store a value in this object.

Ordering arguments are ignored by non-atomic types.

See also: AtomicI8::store

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

Swap with the value stored in this object.

Ordering arguments are ignored by non-atomic types.

See also: AtomicI8::swap

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

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: AtomicI8::compare_and_swap

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

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: AtomicI8::compare_exchange

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

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: AtomicI8::compare_exchange_weak

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

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: AtomicI8::fetch_and

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

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: AtomicI8::fetch_nand

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

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: AtomicI8::fetch_or

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

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: AtomicI8::fetch_xor

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

Increments the current value by val, wrapping on overflow.

Returns the previous value.

Ordering arguments are ignored by non-atomic types.

See also: AtomicI8::fetch_add

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

Decrements the current value by val, wrapping on overflow.

Returns the previous value.

Ordering arguments are ignored by non-atomic types.

See also: AtomicI8::fetch_sub

Loading content...

Implementations on Foreign Types

impl RadiumI8 for AtomicI8[src]

impl RadiumI8 for Cell<i8>[src]

Loading content...

Implementors

Loading content...