Struct wasmparser::Export
source · pub struct Export<'a> {
pub name: &'a str,
pub kind: ExternalKind,
pub index: u32,
}
Expand description
Represents an export in a WebAssembly module.
Fields§
§name: &'a str
The name of the exported item.
kind: ExternalKind
The kind of the export.
index: u32
The index of the exported item.
Trait Implementations§
source§impl<'a> FromReader<'a> for Export<'a>
impl<'a> FromReader<'a> for Export<'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. Read more