pub enum SectionName {
Type,
Import,
Function,
Data,
Global,
Table,
Element,
Export,
Start,
}
Expand description
Section name in WASM module.
Variants§
Type
Type section.
Import
Import section.
Function
Function (Code) section.
Data
Data section.
Global
Global section.
Table
Table section.
Element
Element section.
Export
Export section.
Start
Start section.
Trait Implementations§
Source§impl Debug for SectionName
impl Debug for SectionName
Source§impl Display for SectionName
impl Display for SectionName
Source§impl PartialEq for SectionName
impl PartialEq for SectionName
impl Eq for SectionName
impl StructuralPartialEq for SectionName
Auto Trait Implementations§
impl Freeze for SectionName
impl RefUnwindSafe for SectionName
impl Send for SectionName
impl Sync for SectionName
impl Unpin for SectionName
impl UnwindSafe for SectionName
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