Struct wiggle::wasmtime_crate::StoreLimitsBuilder
source · [−]pub struct StoreLimitsBuilder(_);
Expand description
Used to build StoreLimits
.
Implementations
sourceimpl StoreLimitsBuilder
impl StoreLimitsBuilder
sourcepub fn new() -> StoreLimitsBuilder
pub fn new() -> StoreLimitsBuilder
Creates a new StoreLimitsBuilder
.
See the documentation on each builder method for the default for each value.
sourcepub fn memory_size(self, limit: usize) -> StoreLimitsBuilder
pub fn memory_size(self, limit: usize) -> 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.
sourcepub fn table_elements(self, limit: u32) -> StoreLimitsBuilder
pub fn table_elements(self, limit: u32) -> StoreLimitsBuilder
The maximum number of elements in a table.
Growing a table beyond this limit will fail.
By default, table elements will not be limited.
sourcepub fn instances(self, limit: usize) -> StoreLimitsBuilder
pub fn instances(self, limit: usize) -> StoreLimitsBuilder
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.
sourcepub fn tables(self, tables: usize) -> StoreLimitsBuilder
pub fn tables(self, tables: usize) -> StoreLimitsBuilder
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.
sourcepub fn memories(self, memories: usize) -> StoreLimitsBuilder
pub fn memories(self, memories: usize) -> StoreLimitsBuilder
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.
sourcepub fn build(self) -> StoreLimits
pub fn build(self) -> StoreLimits
Consumes this builder and returns the StoreLimits
.
Auto Trait Implementations
impl RefUnwindSafe for StoreLimitsBuilder
impl Send for StoreLimitsBuilder
impl Sync for StoreLimitsBuilder
impl Unpin for StoreLimitsBuilder
impl UnwindSafe for StoreLimitsBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more