Enum wasmparser::FrameKind
source · pub enum FrameKind {
Block,
If,
Else,
Loop,
TryTable,
LegacyTry,
LegacyCatch,
LegacyCatchAll,
}
Expand description
The kind of a control flow Frame
.
Variants§
Block
A Wasm block
control block.
If
A Wasm if
control block.
Else
A Wasm else
control block.
Loop
A Wasm loop
control block.
TryTable
LegacyTry
A Wasm legacy try
control block.
§Note
See: WasmFeatures::legacy_exceptions
Note in crates/wasmparser/src/features.rs
LegacyCatch
A Wasm legacy catch
control block.
§Note
See: WasmFeatures::legacy_exceptions
Note in crates/wasmparser/src/features.rs
LegacyCatchAll
A Wasm legacy catch_all
control block.
§Note
See: WasmFeatures::legacy_exceptions
Note in crates/wasmparser/src/features.rs
Trait Implementations§
impl Copy for FrameKind
impl Eq for FrameKind
impl StructuralPartialEq for FrameKind
Auto Trait Implementations§
impl Freeze for FrameKind
impl RefUnwindSafe for FrameKind
impl Send for FrameKind
impl Sync for FrameKind
impl Unpin for FrameKind
impl UnwindSafe for FrameKind
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.