[][src]Struct cgc_single_threaded::api::Rooted

pub struct Rooted<T: Trace + ?Sized> { /* fields omitted */ }

Methods

impl<T: Trace + ?Sized> Rooted<T>[src]

pub fn to_heap(&self) -> Handle<T>[src]

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

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

Trait Implementations

impl<T: Trace + ?Sized> Clone for Rooted<T>[src]

impl<T: Trace + Debug> Debug for Rooted<T>[src]

impl<T: Traceable> Deref for Rooted<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T: Traceable> DerefMut for Rooted<T>[src]

impl<T: Trace + Display> Display for Rooted<T>[src]

impl<T: Trace + ?Sized> Drop for Rooted<T>[src]

impl<T: Trace + Eq> Eq for Rooted<T>[src]

impl<T: Traceable> Finalizer for Rooted<T>[src]

impl<'_, T: Trace + ?Sized> From<&'_ Rooted<T>> for Handle<T>[src]

impl<T: Trace + ?Sized> From<Rooted<T>> for Handle<T>[src]

impl<T: Trace + Hash> Hash for Rooted<T>[src]

impl<T: Trace + Ord> Ord for Rooted<T>[src]

impl<T: Trace + PartialEq> PartialEq<Rooted<T>> for Rooted<T>[src]

impl<T: Trace + PartialOrd> PartialOrd<Rooted<T>> for Rooted<T>[src]

Auto Trait Implementations

impl<T: ?Sized> RefUnwindSafe for Rooted<T> where
    T: RefUnwindSafe

impl<T> !Send for Rooted<T>

impl<T> !Sync for Rooted<T>

impl<T: ?Sized> Unpin for Rooted<T>

impl<T: ?Sized> UnwindSafe for Rooted<T> where
    T: RefUnwindSafe

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> ToString for T where
    T: Display + ?Sized
[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> 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.