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 strThe name of the exported item.
kind: ExternalKindThe kind of the export.
index: u32The 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.