Enum wasmtime_environ::wasmparser::CoreType
source · pub enum CoreType<'a> {
Func(FuncType),
Module(Box<[ModuleTypeDeclaration<'a>], Global>),
}
Expand description
Represents a core type in a WebAssembly component.
Variants§
Func(FuncType)
The type is for a core function.
Module(Box<[ModuleTypeDeclaration<'a>], Global>)
The type is for a core module.
Trait Implementations§
source§impl<'a> FromReader<'a> for CoreType<'a>
impl<'a> FromReader<'a> for CoreType<'a>
source§fn from_reader(
reader: &mut BinaryReader<'a>
) -> Result<CoreType<'a>, BinaryReaderError>
fn from_reader(
reader: &mut BinaryReader<'a>
) -> Result<CoreType<'a>, BinaryReaderError>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so. Read more