Struct rquickjs_core::Symbol[][src]

#[repr(transparent)]pub struct Symbol<'js>(_);

Rust representation of a javascript symbol.

Implementations

impl<'js> Symbol<'js>[src]

pub fn as_value(&self) -> &Value<'js>[src]

Reference to value

pub fn into_value(self) -> Value<'js>[src]

Convert into value

pub fn from_value(value: Value<'js>) -> Result<Self>[src]

Convert from value

Methods from Deref<Target = Value<'js>>

pub fn as_bool(&self) -> Option<bool>[src]

Try get bool from value

pub fn as_int(&self) -> Option<i32>[src]

Try get int from value

pub fn as_float(&self) -> Option<f64>[src]

Try get float from value

pub fn as_number(&self) -> Option<f64>[src]

Try get any number from value

pub fn is_bool(&self) -> bool[src]

Check if the value is a bool

pub fn is_int(&self) -> bool[src]

Check if the value is an int

pub fn is_float(&self) -> bool[src]

Check if the value is a float

pub fn is_number(&self) -> bool[src]

Check if the value is an any number

pub fn is_string(&self) -> bool[src]

Check if the value is a string

pub fn is_symbol(&self) -> bool[src]

Check if the value is a symbol

pub fn is_object(&self) -> bool[src]

Check if the value is an object

pub fn is_module(&self) -> bool[src]

Check if the value is a module

pub fn is_array(&self) -> bool[src]

Check if the value is an array

pub fn is_function(&self) -> bool[src]

Check if the value is a function

pub fn is_error(&self) -> bool[src]

Check if the value is an error

pub fn as_value(&self) -> &Self[src]

Reference as value

pub fn get<T: FromJs<'js>>(&self) -> Result<T>[src]

Convert from value to specified type

pub fn type_of(&self) -> Type[src]

Get the type of value

pub fn type_name(&self) -> &'static str[src]

Get the name of type

pub unsafe fn ref_string(&self) -> &String<'js>[src]

Interprete as

Safety

You should be sure that the value already is of required type before to do it.

pub fn as_string(&self) -> Option<&String<'js>>[src]

Try reinterprete as

pub unsafe fn ref_symbol(&self) -> &Symbol<'js>[src]

Interprete as

Safety

You should be sure that the value already is of required type before to do it.

pub fn as_symbol(&self) -> Option<&Symbol<'js>>[src]

Try reinterprete as

pub unsafe fn ref_object(&self) -> &Object<'js>[src]

Interprete as

Safety

You should be sure that the value already is of required type before to do it.

pub fn as_object(&self) -> Option<&Object<'js>>[src]

Try reinterprete as

pub unsafe fn ref_array(&self) -> &Array<'js>[src]

Interprete as

Safety

You should be sure that the value already is of required type before to do it.

pub fn as_array(&self) -> Option<&Array<'js>>[src]

Try reinterprete as

pub unsafe fn ref_function(&self) -> &Function<'js>[src]

Interprete as

Safety

You should be sure that the value already is of required type before to do it.

pub fn as_function(&self) -> Option<&Function<'js>>[src]

Try reinterprete as

pub unsafe fn ref_module(&self) -> &Module<'js, Evaluated>[src]

Interprete as

Safety

You should be sure that the value already is of required type before to do it.

pub fn as_module(&self) -> Option<&Module<'js, Evaluated>>[src]

Try reinterprete as

Trait Implementations

impl<'js> AsRef<Value<'js>> for Symbol<'js>[src]

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

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

impl<'js> Deref for Symbol<'js>[src]

type Target = Value<'js>

The resulting type after dereferencing.

impl<'js> From<Symbol<'js>> for Value<'js>[src]

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

impl<'js> IntoAtom<'js> for Symbol<'js>[src]

impl<'js> IntoJs<'js> for Symbol<'js>[src]

impl<'js, 't> Outlive<'t> for Symbol<'js>[src]

type Target = Symbol<'t>

The target which has the same type as a Self but with another lifetime 't

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

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

Auto Trait Implementations

impl<'js> !RefUnwindSafe for Symbol<'js>[src]

impl<'js> !Send for Symbol<'js>[src]

impl<'js> !Sync for Symbol<'js>[src]

impl<'js> Unpin for Symbol<'js>[src]

impl<'js> UnwindSafe for Symbol<'js>[src]

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.