Skip to main content

JsPrototype

Type Alias JsPrototype 

Source
pub type JsPrototype = Option<JsObject>;
Expand description

A type alias for an object prototype.

A None values means that the prototype is the null value.

Aliased Type§

pub enum JsPrototype {
    None,
    Some(JsObject),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(JsObject)

Some value of type T.