Enum wasm_smith::InstructionKind
source · pub enum InstructionKind {
Numeric,
Vector,
Reference,
Parametric,
Variable,
Table,
Memory,
Control,
Aggregate,
}
Expand description
Enumerate the categories of instructions defined in the WebAssembly specification.
Variants§
Trait Implementations§
source§impl<R: Into<FlagSet<InstructionKind>>> BitAnd<R> for InstructionKind
impl<R: Into<FlagSet<InstructionKind>>> BitAnd<R> for InstructionKind
source§impl<R: Into<FlagSet<InstructionKind>>> BitOr<R> for InstructionKind
impl<R: Into<FlagSet<InstructionKind>>> BitOr<R> for InstructionKind
source§impl<R: Into<FlagSet<InstructionKind>>> BitXor<R> for InstructionKind
impl<R: Into<FlagSet<InstructionKind>>> BitXor<R> for InstructionKind
source§impl Clone for InstructionKind
impl Clone for InstructionKind
source§fn clone(&self) -> InstructionKind
fn clone(&self) -> InstructionKind
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InstructionKind
impl Debug for InstructionKind
source§impl From<InstructionKind> for FlagSet<InstructionKind>
impl From<InstructionKind> for FlagSet<InstructionKind>
source§fn from(value: InstructionKind) -> Self
fn from(value: InstructionKind) -> Self
Converts to this type from the input type.
source§impl FromStr for InstructionKind
impl FromStr for InstructionKind
source§impl Not for InstructionKind
impl Not for InstructionKind
source§impl PartialEq for InstructionKind
impl PartialEq for InstructionKind
source§fn eq(&self, other: &InstructionKind) -> bool
fn eq(&self, other: &InstructionKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<R: Into<FlagSet<InstructionKind>>> Rem<R> for InstructionKind
impl<R: Into<FlagSet<InstructionKind>>> Rem<R> for InstructionKind
source§impl<R: Into<FlagSet<InstructionKind>>> Sub<R> for InstructionKind
impl<R: Into<FlagSet<InstructionKind>>> Sub<R> for InstructionKind
impl Copy for InstructionKind
impl Eq for InstructionKind
impl StructuralPartialEq for InstructionKind
Auto Trait Implementations§
impl Freeze for InstructionKind
impl RefUnwindSafe for InstructionKind
impl Send for InstructionKind
impl Sync for InstructionKind
impl Unpin for InstructionKind
impl UnwindSafe for InstructionKind
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