[][src]Struct ico_memory::sync::IndexSpinlock

pub struct IndexSpinlock { /* fields omitted */ }

Holds up 2^31 values

Methods

impl IndexSpinlock[src]

pub const fn new(value: u32) -> IndexSpinlock[src]

pub fn lock(&self) -> IndexSpinlockGuard[src]

pub fn get(&mut self) -> u32[src]

Since this call borrows the Lock mutably, no actual locking needs to take place -- the mutable borrow statically guarantees no locks exist.

pub fn set(&mut self, value: u32)[src]

Since this call borrows the Lock mutably, no actual locking needs to take place -- the mutable borrow statically guarantees no locks exist.

pub fn into_inner(self) -> u32[src]

Move the value out of the lock, consuming the lock;

Trait Implementations

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]