[−][src]Struct js_sys::WebAssembly::Memory
Implementations
impl Memory
[src][−]
pub fn new(descriptor: &Object) -> Result<Memory, JsValue>
[src][−]
The WebAssembly.Memory()
constructor creates a new Memory
object
which is a resizable ArrayBuffer
that holds the raw bytes of
memory accessed by a WebAssembly Instance
.
A memory created by JavaScript or in WebAssembly code will be accessible and mutable from both JavaScript and WebAssembly.
impl Memory
[src][−]
pub fn buffer(&self) -> JsValue
[src][−]
An accessor property that returns the buffer contained in the memory.
impl Memory
[src][−]
pub fn grow(&self, pages: u32) -> u32
[src][−]
The grow()
protoype method of the Memory
object increases the
size of the memory instance by a specified number of WebAssembly
pages.
Takes the number of pages to grow (64KiB in size) and returns the previous size of memory, in pages.
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 Memory
[src][+]
impl AsRef<Memory> for Memory
[src][+]
impl AsRef<Object> for Memory
[src][+]
impl Clone for Memory
[src][+]
impl Debug for Memory
[src][+]
impl Deref for Memory
[src][+]
impl Eq for Memory
[src]
impl From<JsValue> for Memory
[src][+]
impl From<Memory> for JsValue
[src][+]
impl From<Memory> for Object
[src][+]
impl FromWasmAbi for Memory
[src][+]
impl IntoWasmAbi for Memory
[src][+]
impl<'a> IntoWasmAbi for &'a Memory
[src][+]
impl JsCast for Memory
[src][+]
impl OptionFromWasmAbi for Memory
[src][+]
impl OptionIntoWasmAbi for Memory
[src][+]
impl<'a> OptionIntoWasmAbi for &'a Memory
[src][+]
impl PartialEq<Memory> for Memory
[src][+]
impl RefFromWasmAbi for Memory
[src][+]
impl StructuralEq for Memory
[src]
impl StructuralPartialEq for Memory
[src]
impl WasmDescribe for Memory
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for Memory
impl !Send for Memory
impl !Sync for Memory
impl Unpin for Memory
impl UnwindSafe for Memory
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>,