pub enum SectionError {
NotFound(SectionName),
NotSupported(SectionName),
}
Expand description
Section error in WASM module.
Variants§
Trait Implementations§
Source§impl Debug for SectionError
impl Debug for SectionError
Source§impl Display for SectionError
impl Display for SectionError
Source§impl From<SectionError> for CodeError
impl From<SectionError> for CodeError
Source§fn from(original: SectionError) -> CodeError
fn from(original: SectionError) -> CodeError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SectionError
impl RefUnwindSafe for SectionError
impl Send for SectionError
impl Sync for SectionError
impl Unpin for SectionError
impl UnwindSafe for SectionError
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