Struct tc_transact::lock::Mutable[][src]

pub struct Mutable<T: Clone + Send> { /* fields omitted */ }

A generic impl of Mutate, for convenience.

Implementations

impl<T: Clone + Send> Mutable<T>[src]

pub fn value(&self) -> &T[src]

Trait Implementations

impl<T: Clone + Send> From<T> for Mutable<T>[src]

impl<T: Clone + Send> Mutate for Mutable<T>[src]

type Pending = T

The type of this state when pending a transaction commit.

Auto Trait Implementations

impl<T> RefUnwindSafe for Mutable<T> where
    T: RefUnwindSafe

impl<T> Send for Mutable<T>

impl<T> Sync for Mutable<T> where
    T: Sync

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

impl<T> UnwindSafe for Mutable<T> where
    T: UnwindSafe

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<F, T> CastFrom<F> for T where
    T: From<F>, 

impl<T, F> CastInto<F> for T where
    F: CastFrom<T>, 

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

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

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

impl<F> Match for F

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<F, T> TryCastFrom<F> for T where
    T: CastFrom<F>, 

impl<F, T> TryCastInto<T> for F where
    T: TryCastFrom<F>, 

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