Struct wiggle::wasmtime_crate::StoreLimits
source · pub struct StoreLimits { /* private fields */ }
Expand description
Provides limits for a Store
.
This type is created with a StoreLimitsBuilder
and is typically used in
conjunction with Store::limiter
.
This is a convenience type included to avoid needing to implement the
ResourceLimiter
trait if your use case fits in the static configuration
that this StoreLimits
provides.
Trait Implementations§
source§impl Clone for StoreLimits
impl Clone for StoreLimits
source§fn clone(&self) -> StoreLimits
fn clone(&self) -> StoreLimits
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for StoreLimits
impl Debug for StoreLimits
source§impl Default for StoreLimits
impl Default for StoreLimits
source§fn default() -> StoreLimits
fn default() -> StoreLimits
Returns the “default value” for a type. Read more
source§impl ResourceLimiter for StoreLimits
impl ResourceLimiter for StoreLimits
source§fn memory_growing(
&mut self,
_current: usize,
desired: usize,
maximum: Option<usize>
) -> Result<bool, Error>
fn memory_growing( &mut self, _current: usize, desired: usize, maximum: Option<usize> ) -> Result<bool, Error>
Notifies the resource limiter that an instance’s linear memory has been
requested to grow. Read more
source§fn memory_grow_failed(&mut self, error: Error) -> Result<(), Error>
fn memory_grow_failed(&mut self, error: Error) -> Result<(), Error>
Notifies the resource limiter that growing a linear memory, permitted by
the
memory_growing
method, has failed. Read moresource§fn table_growing(
&mut self,
_current: u32,
desired: u32,
maximum: Option<u32>
) -> Result<bool, Error>
fn table_growing( &mut self, _current: u32, desired: u32, maximum: Option<u32> ) -> Result<bool, Error>
Notifies the resource limiter that an instance’s table has been
requested to grow. Read more
source§fn table_grow_failed(&mut self, error: Error) -> Result<(), Error>
fn table_grow_failed(&mut self, error: Error) -> Result<(), Error>
Notifies the resource limiter that growing a linear memory, permitted by
the
table_growing
method, has failed. Read moresource§fn instances(&self) -> usize
fn instances(&self) -> usize
The maximum number of instances that can be created for a
Store
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for StoreLimits
impl Send for StoreLimits
impl Sync for StoreLimits
impl Unpin for StoreLimits
impl UnwindSafe for StoreLimits
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more