[][src]Enum rquickjs::Value

pub enum Value<'js> {
    Function(Function<'js>),
    Symbol(Symbol<'js>),
    String(String<'js>),
    Object(Object<'js>),
    Array(Array<'js>),
    Int(i32),
    Bool(bool),
    Null,
    Undefined,
    Uninitialized,
    Float(f64),
}

Any javascript value

Variants

Function(Function<'js>)
Symbol(Symbol<'js>)
String(String<'js>)
Object(Object<'js>)
Array(Array<'js>)
Int(i32)
Bool(bool)
Null
Undefined
Uninitialized
Float(f64)

Trait Implementations

impl<'js> Clone for Value<'js>[src]

impl<'js> Debug for Value<'js>[src]

impl<'js> FromJs<'js> for Value<'js>[src]

impl<'js> PartialEq<Value<'js>> for Value<'js>[src]

impl<'js> StructuralPartialEq for Value<'js>[src]

impl<'js> ToJs<'js> for Value<'js>[src]

Auto Trait Implementations

impl<'js> !RefUnwindSafe for Value<'js>

impl<'js> !Send for Value<'js>

impl<'js> !Sync for Value<'js>

impl<'js> Unpin for Value<'js>

impl<'js> UnwindSafe for Value<'js>

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.