Struct wasmparser::MemInfo
source · pub struct MemInfo {
pub memory_size: u32,
pub memory_alignment: u32,
pub table_size: u32,
pub table_alignment: u32,
}
Expand description
Represents a WASM_DYLINK_MEM_INFO
field
Fields§
§memory_size: u32
Size of the memory area the loader should reserve for the module, which
will begin at env.__memory_base
.
memory_alignment: u32
The required alignment of the memory area, in bytes, encoded as a power of 2.
table_size: u32
Size of the table area the loader should reserve for the module, which
will begin at env.__table_base
.
table_alignment: u32
The required alignment of the table area, in elements, encoded as a power of 2.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MemInfo
impl RefUnwindSafe for MemInfo
impl Send for MemInfo
impl Sync for MemInfo
impl Unpin for MemInfo
impl UnwindSafe for MemInfo
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
)