pub struct StoreLimitsBuilder(/* private fields */);
Available on crate feature runtime only.
Expand description

Used to build StoreLimits.

Implementations§

source§

impl StoreLimitsBuilder

source

pub fn new() -> Self

Creates a new StoreLimitsBuilder.

See the documentation on each builder method for the default for each value.

source

pub fn memory_size(self, limit: usize) -> Self

The maximum number of bytes a linear memory can grow to.

Growing a linear memory beyond this limit will fail. This limit is applied to each linear memory individually, so if a wasm module has multiple linear memories then they’re all allowed to reach up to the limit specified.

By default, linear memory will not be limited.

source

pub fn table_elements(self, limit: u32) -> Self

The maximum number of elements in a table.

Growing a table beyond this limit will fail. This limit is applied to each table individually, so if a wasm module has multiple tables then they’re all allowed to reach up to the limit specified.

By default, table elements will not be limited.

source

pub fn instances(self, limit: usize) -> Self

The maximum number of instances that can be created for a Store.

Module instantiation will fail if this limit is exceeded.

This value defaults to 10,000.

source

pub fn tables(self, tables: usize) -> Self

The maximum number of tables that can be created for a Store.

Module instantiation will fail if this limit is exceeded.

This value defaults to 10,000.

source

pub fn memories(self, memories: usize) -> Self

The maximum number of linear memories that can be created for a Store.

Instantiation will fail with an error if this limit is exceeded.

This value defaults to 10,000.

source

pub fn trap_on_grow_failure(self, trap: bool) -> Self

Indicates that a trap should be raised whenever a growth operation would fail.

This operation will force memory.grow and table.grow instructions to raise a trap on failure instead of returning -1. This is not necessarily spec-compliant, but it can be quite handy when debugging a module that fails to allocate memory and might behave oddly as a result.

This value defaults to false.

source

pub fn build(self) -> StoreLimits

Consumes this builder and returns the StoreLimits.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.