Struct wasmtime::StoreLimitsBuilder[][src]

pub struct StoreLimitsBuilder(_);
Expand description

Used to build StoreLimits.

Implementations

Creates a new StoreLimitsBuilder.

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

Growing a linear memory beyond this limit will fail.

By default, linear memory will not be limited.

The maximum number of elements in a table.

Growing a table beyond this limit will fail.

By default, table elements will not be limited.

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.

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.

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.

Consumes this builder and returns the StoreLimits.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

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

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.