[][src]Trait radium::RadiumI64

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

A maybe-atomic shared mutable i64.

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

Required methods

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

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

Consumes and returns the contained value.

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

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

Load a value from this object.

Ordering arguments are ignored by non-atomic types.

See also: AtomicI64::load

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

Store a value in this object.

Ordering arguments are ignored by non-atomic types.

See also: AtomicI64::store

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

Swap with the value stored in this object.

Ordering arguments are ignored by non-atomic types.

See also: AtomicI64::swap

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Increments the current value by val, wrapping on overflow.

Returns the previous value.

Ordering arguments are ignored by non-atomic types.

See also: AtomicI64::fetch_add

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

Decrements the current value by val, wrapping on overflow.

Returns the previous value.

Ordering arguments are ignored by non-atomic types.

See also: AtomicI64::fetch_sub

Loading content...

Implementations on Foreign Types

impl RadiumI64 for AtomicI64[src]

impl RadiumI64 for Cell<i64>[src]

Loading content...

Implementors

Loading content...