Enum wasmparser::KnownCustom
source · #[non_exhaustive]pub enum KnownCustom<'a> {
Name(NameSectionReader<'a>),
ComponentName(ComponentNameSectionReader<'a>),
BranchHints(BranchHintSectionReader<'a>),
Producers(ProducersSectionReader<'a>),
Dylink0(Dylink0SectionReader<'a>),
CoreDump(CoreDumpSection<'a>),
CoreDumpStack(CoreDumpStackSection<'a>),
CoreDumpInstances(CoreDumpInstancesSection),
CoreDumpModules(CoreDumpModulesSection<'a>),
Linking(LinkingSectionReader<'a>),
Reloc(RelocSectionReader<'a>),
Unknown,
}
Expand description
Return value of CustomSectionReader::as_known
.
Note that this is #[non_exhaustive]
because depending on crate features
this enumeration will different entries.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Name(NameSectionReader<'a>)
ComponentName(ComponentNameSectionReader<'a>)
BranchHints(BranchHintSectionReader<'a>)
Producers(ProducersSectionReader<'a>)
Dylink0(Dylink0SectionReader<'a>)
CoreDump(CoreDumpSection<'a>)
CoreDumpStack(CoreDumpStackSection<'a>)
CoreDumpInstances(CoreDumpInstancesSection)
CoreDumpModules(CoreDumpModulesSection<'a>)
Linking(LinkingSectionReader<'a>)
Reloc(RelocSectionReader<'a>)
Unknown
Auto Trait Implementations§
impl<'a> Freeze for KnownCustom<'a>
impl<'a> RefUnwindSafe for KnownCustom<'a>
impl<'a> Send for KnownCustom<'a>
impl<'a> Sync for KnownCustom<'a>
impl<'a> Unpin for KnownCustom<'a>
impl<'a> UnwindSafe for KnownCustom<'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