Enum ValueRef

Source
pub enum ValueRef<'vm> {
    Unit,
    String(Ref<'vm, String>),
    Array(Vec<ValueRef<'vm>>),
    Object(HashMap<String, ValueRef<'vm>>),
    Integer(i64),
    Float(f64),
    Bool(bool),
    Char(char),
    External(Ref<'vm, Any>),
    Type(Hash),
    Fn(Hash),
}
Expand description

A value peeked out of the stack.

Variants§

§

Unit

An empty value indicating nothing.

§

String(Ref<'vm, String>)

A string.

§

Array(Vec<ValueRef<'vm>>)

An array.

§

Object(HashMap<String, ValueRef<'vm>>)

An object.

§

Integer(i64)

An integer.

§

Float(f64)

A float.

§

Bool(bool)

A boolean.

§

Char(char)

A character.

§

External(Ref<'vm, Any>)

Reference to an external type.

§

Type(Hash)

Reference to a value type.

§

Fn(Hash)

A function.

Trait Implementations§

Source§

impl<'vm> Debug for ValueRef<'vm>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'vm> Freeze for ValueRef<'vm>

§

impl<'vm> !RefUnwindSafe for ValueRef<'vm>

§

impl<'vm> !Send for ValueRef<'vm>

§

impl<'vm> !Sync for ValueRef<'vm>

§

impl<'vm> Unpin for ValueRef<'vm>

§

impl<'vm> !UnwindSafe for ValueRef<'vm>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V