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