Struct StoreLimits
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§
§impl Clone for StoreLimits
impl Clone for StoreLimits
§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 more§impl Debug for StoreLimits
impl Debug for StoreLimits
§impl Default for StoreLimits
impl Default for StoreLimits
§fn default() -> StoreLimits
fn default() -> StoreLimits
Returns the “default value” for a type. Read more
§impl ResourceLimiter for StoreLimits
impl ResourceLimiter for StoreLimits
§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
§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 more§fn table_growing(
&mut self,
_current: usize,
desired: usize,
maximum: Option<usize>,
) -> Result<bool, Error>
fn table_growing( &mut self, _current: usize, desired: usize, maximum: Option<usize>, ) -> Result<bool, Error>
Notifies the resource limiter that an instance’s table has been
requested to grow. Read more
§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 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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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