[−][src]Struct rusty_v8::ScriptOrModule
A container type that holds relevant metadata for module loading.
This is passed back to the embedder as part of HostImportModuleDynamicallyCallback for module loading.
Implementations
impl ScriptOrModule[src]
pub fn get_resource_name(&self) -> Local<'_, Value>[src]
The name that was passed by the embedder as ResourceName to the ScriptOrigin. This can be either a v8::String or v8::Undefined.
pub fn get_host_defined_options(&self) -> Local<'_, PrimitiveArray>[src]
The options that were passed by the embedder as HostDefinedOptions to the ScriptOrigin.
Methods from Deref<Target = Data>
pub fn get_hash(&self) -> int[src]
Returns the V8 hash value for this value. The current implementation uses a hidden property to store the identity hash on some object types.
The return value will never be 0. Also, it is not guaranteed to be unique.
pub fn is_value(&self) -> bool[src]
Returns true if this data is a Value.
pub fn is_module(&self) -> bool[src]
Returns true if this data is a Module.
pub fn is_private(&self) -> bool[src]
Returns true if this data is a Private.
pub fn is_object_template(&self) -> bool[src]
Returns true if this data is an ObjectTemplate
pub fn is_function_template(&self) -> bool[src]
Returns true if this data is a FunctionTemplate.
Trait Implementations
impl Debug for ScriptOrModule[src]
impl Deref for ScriptOrModule[src]
impl Eq for ScriptOrModule[src]
impl Hash for ScriptOrModule[src]
pub fn hash<H: Hasher>(&self, state: &mut H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<'s> PartialEq<Data> for ScriptOrModule[src]
pub fn eq(&self, other: &Data) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl<'s> PartialEq<ScriptOrModule> for Data[src]
pub fn eq(&self, other: &ScriptOrModule) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl<'s> PartialEq<ScriptOrModule> for ScriptOrModule[src]
Auto Trait Implementations
impl RefUnwindSafe for ScriptOrModule
impl Send for ScriptOrModule
impl Sync for ScriptOrModule
impl Unpin for ScriptOrModule
impl UnwindSafe for ScriptOrModule
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,