AtomicI64

Struct AtomicI64 

Source
pub struct AtomicI64 { /* private fields */ }
Expand description

An integer type which can be safely shared between threads.

Implementations§

Source§

impl AtomicI64

Source

pub fn new(v: i64) -> Self

Creates a new atomic integer.

§Examples
use atomic_shim::AtomicI64;
let atomic_forty_two = AtomicI64::new(42);
Source

pub fn get_mut(&mut self) -> &mut i64

Returns a mutable reference to the underlying integer.

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;

let mut some_var = AtomicI64::new(10);
assert_eq!(*some_var.get_mut(), 10);
*some_var.get_mut() = 5;
assert_eq!(some_var.load(Ordering::SeqCst), 5);
Source

pub fn into_inner(self) -> i64

Consumes the atomic and returns the contained value.

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::AtomicI64;
let some_var = AtomicI64::new(5);
assert_eq!(some_var.into_inner(), 5);
Source

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

Loads a value from the atomic integer.

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;
let some_var = AtomicI64::new(5);
assert_eq!(some_var.load(Ordering::Relaxed), 5);
Source

pub fn store(&self, value: i64, _: Ordering)

Stores a value into the atomic integer.

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;

let some_var = AtomicI64::new(5);
some_var.store(10, Ordering::Relaxed);
assert_eq!(some_var.load(Ordering::Relaxed), 10);
Source

pub fn swap(&self, value: i64, _: Ordering) -> i64

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

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;

let some_var = AtomicI64::new(5);
assert_eq!(some_var.swap(10, Ordering::Relaxed), 5);
Source

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

Stores a value into the atomic integer 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.

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;

let some_var = AtomicI64::new(5);
assert_eq!(some_var.compare_and_swap(5, 10, Ordering::Relaxed), 5);
assert_eq!(some_var.load(Ordering::Relaxed), 10);
assert_eq!(some_var.compare_and_swap(6, 12, Ordering::Relaxed), 10);
assert_eq!(some_var.load(Ordering::Relaxed), 10);
Source

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

Stores a value into the atomic integer 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.

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;

let some_var = AtomicI64::new(5);
assert_eq!(some_var.compare_exchange(5, 10,
                                     Ordering::Acquire,
                                     Ordering::Relaxed),
           Ok(5));
assert_eq!(some_var.load(Ordering::Relaxed), 10);
assert_eq!(some_var.compare_exchange(6, 12,
                                     Ordering::SeqCst,
                                     Ordering::Acquire),
           Err(10));
assert_eq!(some_var.load(Ordering::Relaxed), 10);
Source

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

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

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;

let val = AtomicI64::new(4);
let mut old = val.load(Ordering::Relaxed);
loop {
    let new = old * 2;
    match val.compare_exchange_weak(old, new, Ordering::SeqCst, Ordering::Relaxed) {
        Ok(_) => break,
        Err(x) => old = x,
    }
}
Source

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

Adds to the current value, returning the previous value.

This operation wraps around on overflow.

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;

let foo = AtomicI64::new(0);
assert_eq!(foo.fetch_add(10, Ordering::SeqCst), 0);
assert_eq!(foo.load(Ordering::SeqCst), 10);
Source

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

Subtracts from the current value, returning the previous value.

This operation wraps around on overflow.

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;

let foo = AtomicI64::new(20);
assert_eq!(foo.fetch_sub(10, Ordering::SeqCst), 20);
assert_eq!(foo.load(Ordering::SeqCst), 10);
Source

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

Bitwise “and” with the current value.

Performs a bitwise “and” operation on the current value and the argument val, and sets the new value to the result. Returns the previous value.

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;

let foo = AtomicI64::new(0b101101);
assert_eq!(foo.fetch_and(0b110011, Ordering::SeqCst), 0b101101);
assert_eq!(foo.load(Ordering::SeqCst), 0b100001);
Source

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

Bitwise “nand” with the current value.

Performs a bitwise “nand” operation on the current value and the argument val, and sets the new value to the result. Returns the previous value.

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;

let foo = AtomicI64::new(0x13);
assert_eq!(foo.fetch_nand(0x31, Ordering::SeqCst), 0x13);
assert_eq!(foo.load(Ordering::SeqCst), !(0x13 & 0x31));
Source

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

Bitwise “or” with the current value.

Performs a bitwise “or” operation on the current value and the argument val, and sets the new value to the result. Returns the previous value.

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;

let foo = AtomicI64::new(0b101101);
assert_eq!(foo.fetch_or(0b110011, Ordering::SeqCst), 0b101101);
assert_eq!(foo.load(Ordering::SeqCst), 0b111111);
Source

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

Bitwise “xor” with the current value.

Performs a bitwise “xor” operation on the current value and the argument val, and sets the new value to the result. Returns the previous value.

It ignores the Ordering argument, but it is required for compatibility with std::sync::AtomicI64

§Panics

Panics if the Mutex is poisoned

§Examples
use std::sync::atomic::Ordering;
use atomic_shim::AtomicI64;
let foo = AtomicI64::new(0b101101);
assert_eq!(foo.fetch_xor(0b110011, Ordering::SeqCst), 0b101101);
assert_eq!(foo.load(Ordering::SeqCst), 0b011110);

Trait Implementations§

Source§

impl Debug for AtomicI64

Source§

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

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

impl Default for AtomicI64

Source§

fn default() -> AtomicI64

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

impl From<i64> for AtomicI64

Source§

fn from(value: i64) -> Self

Converts to this type from the input type.

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>,

Source§

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>,

Source§

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.