Struct v9::util::SyncRef[][src]

pub struct SyncRef<T> { /* fields omitted */ }

A Syncable RefCell.

Implementations

impl<T: TableMarker> SyncRef<RunList<T>>[src]

pub fn new(val: RunList<T>) -> Self[src]

pub fn get_mut(&mut self) -> &mut RunList<T>[src]

pub fn as_cell(&mut self) -> &RefCell<RunList<T>>[src]

pub unsafe fn as_cell_unsafe(&self) -> &RefCell<RunList<T>>[src]

Trait Implementations

impl<T: Clone> Clone for SyncRef<T>[src]

impl<T: Debug> Debug for SyncRef<T>[src]

impl<T: Default> Default for SyncRef<T>[src]

impl<T: TableMarker> Send for SyncRef<RunList<T>>[src]

impl<T: TableMarker> Sync for SyncRef<RunList<T>>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for SyncRef<T>

impl<T> Send for SyncRef<T> where
    T: Send

impl<T> !Sync for SyncRef<T>

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

impl<T> UnwindSafe for SyncRef<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<X> ForeignKey for X[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.