[][src]Struct ferris_gc::sync::GcCell

pub struct GcCell<T> where
    T: 'static + Sized + Trace
{ /* fields omitted */ }

Implementations

impl<T> GcCell<T> where
    T: 'static + Sized + Trace
[src]

pub fn new<'a>(t: T) -> GcCell<T>[src]

Trait Implementations

impl<T> Clone for GcCell<T> where
    T: 'static + Sized + Trace
[src]

impl<T> Deref for GcCell<T> where
    T: 'static + Sized + Trace
[src]

type Target = GcCellInternal<T>

The resulting type after dereferencing.

impl<T> Drop for GcCell<T> where
    T: Sized + Trace
[src]

impl<T> Finalize for GcCell<T> where
    T: Sized + Trace
[src]

impl<T> Send for GcCell<T> where
    T: 'static + Sized + Trace + Send
[src]

impl<T> Sync for GcCell<T> where
    T: 'static + Sized + Trace + Sync
[src]

impl<T> Trace for GcCell<T> where
    T: Sized + Trace
[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for GcCell<T>

impl<T> Unpin for GcCell<T>

impl<T> !UnwindSafe for GcCell<T>

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