Enum wasmparser::Dylink0Subsection
source · pub enum Dylink0Subsection<'a> {
MemInfo(MemInfo),
Needed(Vec<&'a str>),
ExportInfo(Vec<ExportInfo<'a>>),
ImportInfo(Vec<ImportInfo<'a>>),
Unknown {
ty: u8,
data: &'a [u8],
range: Range<usize>,
},
}
Expand description
Possible subsections of the dylink.0
custom section.
Variants§
MemInfo(MemInfo)
Needed(Vec<&'a str>)
ExportInfo(Vec<ExportInfo<'a>>)
ImportInfo(Vec<ImportInfo<'a>>)
Unknown
Trait Implementations§
source§impl<'a> Debug for Dylink0Subsection<'a>
impl<'a> Debug for Dylink0Subsection<'a>
source§impl<'a> Subsection<'a> for Dylink0Subsection<'a>
impl<'a> Subsection<'a> for Dylink0Subsection<'a>
source§fn from_reader(id: u8, reader: BinaryReader<'a>) -> Result<Self>
fn from_reader(id: u8, reader: BinaryReader<'a>) -> Result<Self>
Converts the section identifier provided with the section contents into
a typed section
Auto Trait Implementations§
impl<'a> Freeze for Dylink0Subsection<'a>
impl<'a> RefUnwindSafe for Dylink0Subsection<'a>
impl<'a> Send for Dylink0Subsection<'a>
impl<'a> Sync for Dylink0Subsection<'a>
impl<'a> Unpin for Dylink0Subsection<'a>
impl<'a> UnwindSafe for Dylink0Subsection<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more