pub enum TableSectionError {
TableNumberLimit {
limit: u32,
actual: u32,
},
}
Expand description
Table section error in WASM module.
Variants§
TableNumberLimit
Number of table exceeds the limit.
Trait Implementations§
Source§impl Debug for TableSectionError
impl Debug for TableSectionError
Source§impl Display for TableSectionError
impl Display for TableSectionError
Source§impl From<TableSectionError> for CodeError
impl From<TableSectionError> for CodeError
Source§fn from(original: TableSectionError) -> CodeError
fn from(original: TableSectionError) -> CodeError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TableSectionError
impl RefUnwindSafe for TableSectionError
impl Send for TableSectionError
impl Sync for TableSectionError
impl Unpin for TableSectionError
impl UnwindSafe for TableSectionError
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