[][src]Struct ico_memory::sync::rw_lock::RWSpinLock

#[repr(C)]
pub struct RWSpinLock<T> { /* fields omitted */ }

Methods

impl<T> RWSpinLock<T>[src]

pub const fn new(data: T) -> RWSpinLock<T>[src]

pub fn read(&self) -> RWSpinReadGuard<T>[src]

pub fn write(&self) -> RWSpinWriteGuard<T>[src]

pub fn try_read(&self) -> Option<RWSpinReadGuard<T>>[src]

pub fn mark_write_request(&self)[src]

pub fn unmark_write_request(&self)[src]

pub fn try_write(&self) -> Option<RWSpinWriteGuard<T>>[src]

pub fn upgrade(&self, read: RWSpinReadGuard<T>) -> RWSpinWriteGuard<T>[src]

pub fn get_mut(&mut self) -> &mut T[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) -> T[src]

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

Trait Implementations

impl<T: Send> Send for RWSpinLock<T>[src]

impl<T: Sync + Send> Sync for RWSpinLock<T>[src]

Auto Trait Implementations

impl<T> Unpin for RWSpinLock<T> where
    T: Unpin

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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