[][src]Struct glsp_engine::Root

pub struct Root<T: Allocate> { /* fields omitted */ }

A smart pointer onto the garbage-collected heap.

Implementations

impl<T: Allocate> Root<T>[src]

pub fn ptr_eq(root0: &Root<T>, root1: &Root<T>) -> bool[src]

Trait Implementations

impl<T: Allocate> AsRef<T> for Root<T>[src]

impl<T: Allocate> Borrow<T> for Root<T>[src]

impl CallableOps for Root<GFn>[src]

impl CallableOps for Root<Class>[src]

impl<T: Allocate> Clone for Root<T>[src]

impl<T: Allocate + Debug> Debug for Root<T>[src]

impl<T: Allocate> Deref for Root<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T: Allocate + Display> Display for Root<T>[src]

impl DoubleEndedIterator for Root<GIter>[src]

impl<T: Allocate> Drop for Root<T>[src]

impl FromVal for Root<Arr>[src]

impl FromVal for Root<Str>[src]

impl FromVal for Root<Tab>[src]

impl FromVal for Root<GIter>[src]

impl FromVal for Root<Obj>[src]

impl FromVal for Root<GFn>[src]

impl FromVal for Root<Class>[src]

impl FromVal for Root<Coro>[src]

impl FromVal for Root<RData>[src]

impl<T> !GSend for Root<T>[src]

impl<T> !GStore for Root<T>[src]

impl<'a> IntoIterator for &'a Root<Arr>[src]

type Item = Val

The type of the elements being iterated over.

type IntoIter = IterDeque<'a, Arr>

Which kind of iterator are we turning this into?

impl<'a> IntoIterator for &'a mut Root<Arr>[src]

type Item = Val

The type of the elements being iterated over.

type IntoIter = IterDeque<'a, Arr>

Which kind of iterator are we turning this into?

impl<'a> IntoIterator for &'a Root<Str>[src]

type Item = char

The type of the elements being iterated over.

type IntoIter = IterDeque<'a, Str>

Which kind of iterator are we turning this into?

impl<'a> IntoIterator for &'a mut Root<Str>[src]

type Item = char

The type of the elements being iterated over.

type IntoIter = IterDeque<'a, Str>

Which kind of iterator are we turning this into?

impl IterableOps for Root<Arr>[src]

impl IterableOps for Root<Str>[src]

impl IterableOps for Root<Tab>[src]

impl IterableOps for Root<Coro>[src]

impl IterableOps for Root<GIter>[src]

impl Iterator for Root<GIter>[src]

type Item = GResult<Val>

The type of the elements being iterated over.

impl PartialEq<Root<Obj>> for Obj[src]

impl PartialEq<Root<RData>> for RData[src]

impl<T: Allocate + PartialEq<T>> PartialEq<Root<T>> for Root<T>[src]

impl<T: Allocate> Pointer for Root<T>[src]

impl<T> !Send for Root<T>[src]

impl ToVal for Root<Arr>[src]

impl ToVal for Root<Str>[src]

impl ToVal for Root<Tab>[src]

impl ToVal for Root<GIter>[src]

impl ToVal for Root<Obj>[src]

impl ToVal for Root<Class>[src]

impl ToVal for Root<GFn>[src]

impl ToVal for Root<Coro>[src]

impl ToVal for Root<RData>[src]

impl Write for Root<Str>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Root<T>

impl<T> !Sync for Root<T>

impl<T> Unpin for Root<T>

impl<T> UnwindSafe for Root<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> Erased for T[src]

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

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.