Struct v8::UnboundModuleScript
source · #[repr(C)]pub struct UnboundModuleScript(_);
Expand description
A compiled JavaScript module, not yet tied to a Context.
Implementations§
source§impl UnboundModuleScript
impl UnboundModuleScript
sourcepub fn create_code_cache(&self) -> Option<UniqueRef<CachedData<'static>>>
pub fn create_code_cache(&self) -> Option<UniqueRef<CachedData<'static>>>
Creates and returns code cache for the specified unbound_module_script. This will return nullptr if the script cannot be serialized. The CachedData returned by this function should be owned by the caller.
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 Debug for UnboundModuleScript
impl Debug for UnboundModuleScript
source§impl Deref for UnboundModuleScript
impl Deref for UnboundModuleScript
source§impl<'s> PartialEq<Data> for UnboundModuleScript
impl<'s> PartialEq<Data> for UnboundModuleScript
source§impl<'s> PartialEq<UnboundModuleScript> for Data
impl<'s> PartialEq<UnboundModuleScript> for Data
source§fn eq(&self, other: &UnboundModuleScript) -> bool
fn eq(&self, other: &UnboundModuleScript) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'s> PartialEq<UnboundModuleScript> for UnboundModuleScript
impl<'s> PartialEq<UnboundModuleScript> for UnboundModuleScript
source§fn eq(&self, other: &UnboundModuleScript) -> bool
fn eq(&self, other: &UnboundModuleScript) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.