Struct concread::internals::lincowcell::LinCowCell[][src]

pub struct LinCowCell<T, R, U> { /* fields omitted */ }

A concurrently readable cell with linearised drop behaviour.

Implementations

impl<T, R, U> LinCowCell<T, R, U> where
    T: LinCowCellCapable<R, U>, 
[src]

pub fn new(data: T) -> Self[src]

Create a new linear 🐄 cell.

pub fn read(&self) -> LinCowCellReadTxn<'_, T, R, U>[src]

Begin a read txn

pub fn write(&self) -> LinCowCellWriteTxn<'_, T, R, U>[src]

Begin a write txn

pub fn try_write(&self) -> Option<LinCowCellWriteTxn<'_, T, R, U>>[src]

Attempt a write txn

Trait Implementations

impl<T: Debug, R: Debug, U: Debug> Debug for LinCowCell<T, R, U>[src]

Auto Trait Implementations

impl<T, R, U> !RefUnwindSafe for LinCowCell<T, R, U>

impl<T, R, U> Send for LinCowCell<T, R, U> where
    R: Send + Sync,
    T: Send,
    U: Send

impl<T, R, U> Sync for LinCowCell<T, R, U> where
    R: Send + Sync,
    T: Send,
    U: Sync

impl<T, R, U> Unpin for LinCowCell<T, R, U> where
    T: Unpin,
    U: Unpin

impl<T, R, U> !UnwindSafe for LinCowCell<T, R, U>

Blanket Implementations

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

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

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

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

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

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,