Struct wasmtime::Limits [−][src]
pub struct Limits { /* fields omitted */ }
Limits of tables/memories where the units of the limits are defined by the table/memory types.
A minimum is always available but the maximum may not be present.
Implementations
impl Limits
[src]
impl Limits
[src]pub fn new(min: u32, max: Option<u32>) -> Limits
[src]
Creates a new set of limits with the minimum and maximum both specified.
pub fn at_least(min: u32) -> Limits
[src]
Creates a new Limits
with the min
specified and no maximum specified.
pub fn min(&self) -> u32
[src]
Returns the minimum amount for these limits.
pub fn max(&self) -> Option<u32>
[src]
Returns the maximum amount for these limits, if specified.