Enum wap::JsType [] [src]

pub enum JsType {
    Null,
    Undefined,
    Boolean(bool),
    Number(f64),
    String(String),
    Ref(WapRc),
}

The main data communication type in and out of function calls.

Variants

Object/function/Symbol

Methods

impl JsType
[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Debug for JsType
[src]

[src]

Formats the value using the given formatter.

impl Clone for JsType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<bool> for JsType
[src]

[src]

Performs the conversion.

impl From<f64> for JsType
[src]

[src]

Performs the conversion.

impl From<String> for JsType
[src]

[src]

Performs the conversion.

impl From<WapRc> for JsType
[src]

[src]

Performs the conversion.