Struct wasmtime::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§impl ResourceLimiter for StoreLimits
impl ResourceLimiter for StoreLimits
source§fn memory_growing(
&mut self,
_current: usize,
desired: usize,
maximum: Option<usize>,
) -> Result<bool>
fn memory_growing( &mut self, _current: usize, desired: usize, maximum: Option<usize>, ) -> Result<bool>
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<()>
fn memory_grow_failed(&mut self, error: Error) -> Result<()>
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>
fn table_growing( &mut self, _current: u32, desired: u32, maximum: Option<u32>, ) -> Result<bool>
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<()>
fn table_grow_failed(&mut self, error: Error) -> Result<()>
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 Freeze for StoreLimits
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more