[][src]Struct litto::value::Value

pub struct Value<L: 'static> { /* fields omitted */ }

An abstract value type that is tracked by a cyclic garbage collector.

Call gcmodule::collect_thread_cycles to collect cycles and reclaim space.

Methods

impl<L: Interpreter> Value<L>[src]

pub fn new<T: AbstractValue<L> + Sized>(value: T) -> Self[src]

Create a new Value.

pub fn downcast_ref<T: AbstractValue<L> + Sized>(&self) -> Option<&T>[src]

Attempt to downcast.

Trait Implementations

impl<L: Clone + 'static> Clone for Value<L>[src]

impl<L: Interpreter> Debug for Value<L>[src]

impl<L> Deref for Value<L>[src]

type Target = dyn AbstractValue<L>

The resulting type after dereferencing.

impl<L: Interpreter> Display for Value<L>[src]

impl<L: 'static> Trace for Value<L>[src]

Auto Trait Implementations

impl<L> !RefUnwindSafe for Value<L>

impl<L> !Send for Value<L>

impl<L> !Sync for Value<L>

impl<L> Unpin for Value<L>

impl<L> !UnwindSafe for Value<L>

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.