Struct wasmer_types::compilation::module::ArchivedCompileModuleInfo
source · #[repr()]pub struct ArchivedCompileModuleInfowhere
Features: Archive,
ModuleInfo: Archive,
PrimaryMap<MemoryIndex, MemoryStyle>: Archive,
PrimaryMap<TableIndex, TableStyle>: Archive,{
pub features: Archived<Features>,
pub module: Archived<ModuleInfo>,
pub memory_styles: Archived<PrimaryMap<MemoryIndex, MemoryStyle>>,
pub table_styles: Archived<PrimaryMap<TableIndex, TableStyle>>,
}
Expand description
An archived CompileModuleInfo
Fields§
§features: Archived<Features>
The archived counterpart of CompileModuleInfo::features
module: Archived<ModuleInfo>
The archived counterpart of CompileModuleInfo::module
memory_styles: Archived<PrimaryMap<MemoryIndex, MemoryStyle>>
The archived counterpart of CompileModuleInfo::memory_styles
table_styles: Archived<PrimaryMap<TableIndex, TableStyle>>
The archived counterpart of CompileModuleInfo::table_styles
Auto Trait Implementations§
impl RefUnwindSafe for ArchivedCompileModuleInfo
impl Send for ArchivedCompileModuleInfo
impl Sync for ArchivedCompileModuleInfo
impl !Unpin for ArchivedCompileModuleInfo
impl UnwindSafe for ArchivedCompileModuleInfo
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.