pub struct Module<'a> {
pub version: VersionInfo,
pub module_data: ModuleData<'a>,
pub tables: &'a [&'a [TableElement]],
pub function_manifest: &'a [FunctionSpec],
}
Expand description
Module is the exposed structure that contains all the data backing a Lucet-compiled object.
Fields§
§version: VersionInfo
§module_data: ModuleData<'a>
§tables: &'a [&'a [TableElement]]
§function_manifest: &'a [FunctionSpec]
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Module<'a>
impl<'a> RefUnwindSafe for Module<'a>
impl<'a> Send for Module<'a>
impl<'a> Sync for Module<'a>
impl<'a> Unpin for Module<'a>
impl<'a> UnwindSafe for Module<'a>
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