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§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