[−][src]Struct js_sys::WebAssembly::Module
A WebAssembly.Module
object contains stateless WebAssembly code
that has already been compiled by the browser and can be
efficiently shared with Workers, and instantiated multiple times.
Implementations
impl Module
[src][−]
pub fn new(buffer_source: &JsValue) -> Result<Module, JsValue>
[src][−]
A WebAssembly.Module
object contains stateless WebAssembly code
that has already been compiled by the browser and can be
efficiently shared with Workers, and instantiated multiple times.
impl Module
[src][−]
pub fn custom_sections(module: &Module, sectionName: &str) -> Array
[src][−]
The WebAssembly.customSections()
function returns a copy of the
contents of all custom sections in the given module with the given
string name.
impl Module
[src][−]
pub fn exports(module: &Module) -> Array
[src][−]
The WebAssembly.exports()
function returns an array containing
descriptions of all the declared exports of the given Module
.
impl Module
[src][−]
pub fn imports(module: &Module) -> Array
[src][−]
The WebAssembly.imports()
function returns an array containing
descriptions of all the declared imports of the given Module
.
Methods from Deref<Target = Object>
pub fn constructor(&self) -> Function
[src][−]
The constructor property returns a reference to the Object
constructor
function that created the instance object.
pub fn has_own_property(&self, property: &JsValue) -> bool
[src][−]
The hasOwnProperty()
method returns a boolean indicating whether the
object has the specified property as its own property (as opposed to
inheriting it).
pub fn is_prototype_of(&self, value: &JsValue) -> bool
[src][−]
The isPrototypeOf()
method checks if an object exists in another
object's prototype chain.
pub fn property_is_enumerable(&self, property: &JsValue) -> bool
[src][−]
The propertyIsEnumerable()
method returns a Boolean indicating
whether the specified property is enumerable.
pub fn to_locale_string(&self) -> JsString
[src][−]
The toLocaleString()
method returns a string representing the object.
This method is meant to be overridden by derived objects for
locale-specific purposes.
pub fn to_string(&self) -> JsString
[src][−]
The toString()
method returns a string representing the object.
pub fn value_of(&self) -> Object
[src][−]
The valueOf()
method returns the primitive value of the
specified object.
Trait Implementations
impl AsRef<JsValue> for Module
[src][+]
impl AsRef<Module> for Module
[src][+]
impl AsRef<Object> for Module
[src][+]
impl Clone for Module
[src][+]
impl Debug for Module
[src][+]
impl Deref for Module
[src][+]
impl Eq for Module
[src]
impl From<JsValue> for Module
[src][+]
impl From<Module> for JsValue
[src][+]
impl From<Module> for Object
[src][+]
impl FromWasmAbi for Module
[src][+]
impl IntoWasmAbi for Module
[src][+]
impl<'a> IntoWasmAbi for &'a Module
[src][+]
impl JsCast for Module
[src][+]
impl OptionFromWasmAbi for Module
[src][+]
impl OptionIntoWasmAbi for Module
[src][+]
impl<'a> OptionIntoWasmAbi for &'a Module
[src][+]
impl PartialEq<Module> for Module
[src][+]
impl RefFromWasmAbi for Module
[src][+]
impl StructuralEq for Module
[src]
impl StructuralPartialEq for Module
[src]
impl WasmDescribe for Module
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for Module
impl !Send for Module
impl !Sync for Module
impl Unpin for Module
impl UnwindSafe for Module
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,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
[src][+]
T: IntoWasmAbi,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,