struct Limits [src]
Limits classify the size range of resizeable storage associated with memory types and table types.
Fields
flags: Flags
min: u32
max: u32
Members
- Flags (struct)
Source
pub const Limits = struct {
flags: Flags,
min: u32,
max: u32,
pub const Flags = packed struct(u8) {
has_max: bool,
is_shared: bool,
reserved: u6 = 0,
};
}