#[repr(C)]pub struct Template(_);
Expand description
The superclass of object and function templates.
Implementations§
source§impl Template
impl Template
sourcepub fn set(&self, key: Local<'_, Name>, value: Local<'_, Data>)
pub fn set(&self, key: Local<'_, Name>, value: Local<'_, Data>)
Adds a property to each instance created by this template.
sourcepub fn set_with_attr(
&self,
key: Local<'_, Name>,
value: Local<'_, Data>,
attr: PropertyAttribute
)
pub fn set_with_attr(
&self,
key: Local<'_, Name>,
value: Local<'_, Data>,
attr: PropertyAttribute
)
Adds a property to each instance created by this template with the specified property attributes.
Methods from Deref<Target = Data>§
sourcepub fn is_big_int(&self) -> bool
pub fn is_big_int(&self) -> bool
Returns true if this data is a BigInt
.
sourcepub fn is_boolean(&self) -> bool
pub fn is_boolean(&self) -> bool
Returns true if this data is a Boolean
.
sourcepub fn is_context(&self) -> bool
pub fn is_context(&self) -> bool
Returns true if this data is a Context
.
sourcepub fn is_fixed_array(&self) -> bool
pub fn is_fixed_array(&self) -> bool
Returns true if this data is a FixedArray
.
sourcepub fn is_function_template(&self) -> bool
pub fn is_function_template(&self) -> bool
Returns true if this data is a FunctionTemplate
.
sourcepub fn is_module_request(&self) -> bool
pub fn is_module_request(&self) -> bool
Returns true if this data is a ModuleRequest
.
sourcepub fn is_object_template(&self) -> bool
pub fn is_object_template(&self) -> bool
Returns true if this data is a ObjectTemplate
.
sourcepub fn is_primitive(&self) -> bool
pub fn is_primitive(&self) -> bool
Returns true if this data is a Primitive
.
sourcepub fn is_private(&self) -> bool
pub fn is_private(&self) -> bool
Returns true if this data is a Private
.
Trait Implementations§
source§impl<'s> PartialEq<Data> for Template
impl<'s> PartialEq<Data> for Template
source§impl<'s> PartialEq<FunctionTemplate> for Template
impl<'s> PartialEq<FunctionTemplate> for Template
source§fn eq(&self, other: &FunctionTemplate) -> bool
fn eq(&self, other: &FunctionTemplate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'s> PartialEq<ObjectTemplate> for Template
impl<'s> PartialEq<ObjectTemplate> for Template
source§fn eq(&self, other: &ObjectTemplate) -> bool
fn eq(&self, other: &ObjectTemplate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.