[][src]Enum wasmparser::SectionContent

pub enum SectionContent<'a> {
    Type(TypeSectionReader<'a>),
    Function(FunctionSectionReader<'a>),
    Code(CodeSectionReader<'a>),
    Export(ExportSectionReader<'a>),
    Import(ImportSectionReader<'a>),
    Global(GlobalSectionReader<'a>),
    Memory(MemorySectionReader<'a>),
    Data(DataSectionReader<'a>),
    Table(TableSectionReader<'a>),
    Element(ElementSectionReader<'a>),
    Name(NameSectionReader<'a>),
    Producers(ProducersSectionReader<'a>),
    Linking(LinkingSectionReader<'a>),
    Reloc(RelocSectionReader<'a>),
    Start(u32),
    DataCount(u32),
    SourceMappingURL(&'a str),
    Custom(BinaryReader<'a>),
}

Variants

Function(FunctionSectionReader<'a>)
Producers(ProducersSectionReader<'a>)
Start(u32)
DataCount(u32)
SourceMappingURL(&'a str)
Custom(BinaryReader<'a>)

Auto Trait Implementations

impl<'a> Send for SectionContent<'a>

impl<'a> Sync for SectionContent<'a>

impl<'a> Unpin for SectionContent<'a>

impl<'a> RefUnwindSafe for SectionContent<'a>

impl<'a> UnwindSafe for SectionContent<'a>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]