Struct wast::Custom [−][src]
pub struct Custom<'a> { pub span: Span, pub name: &'a str, pub place: CustomPlace, pub data: Vec<&'a [u8]>, }
A wasm custom section within a module.
Fields
span: Span
Where this @custom
was defined.
name: &'a str
Name of the custom section.
place: CustomPlace
Where the custom section is being placed,
data: Vec<&'a [u8]>
Payload of this custom section.