Enum wasm_encoder::SectionId
source · #[repr(u8)]pub enum SectionId {
Show 14 variants
Custom,
Type,
Import,
Function,
Table,
Memory,
Global,
Export,
Start,
Element,
Code,
Data,
DataCount,
Tag,
}
Expand description
Known section identifiers of WebAssembly modules.
Variants§
Custom
The custom section.
Type
The type section.
Import
The import section.
Function
The function section.
Table
The table section.
Memory
The memory section.
Global
The global section.
Export
The export section.
Start
The start section.
Element
The element section.
Code
The code section.
Data
The data section.
DataCount
The data count section.
Tag
The tag section.
This section is supported by the exception handling proposal.
Trait Implementations§
source§impl Ord for SectionId
impl Ord for SectionId
source§impl PartialEq<SectionId> for SectionId
impl PartialEq<SectionId> for SectionId
source§impl PartialOrd<SectionId> for SectionId
impl PartialOrd<SectionId> for SectionId
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for SectionId
impl Eq for SectionId
impl StructuralEq for SectionId
impl StructuralPartialEq for SectionId
Auto Trait Implementations§
impl RefUnwindSafe for SectionId
impl Send for SectionId
impl Sync for SectionId
impl Unpin for SectionId
impl UnwindSafe for SectionId
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