Enum wasm_smith::InstructionKind
source · pub enum InstructionKind {
Numeric,
Vector,
Reference,
Parametric,
Variable,
Table,
Memory,
Control,
}
Expand description
Enumerate the categories of instructions defined in the WebAssembly specification.
Variants
Numeric
Vector
Reference
Parametric
Variable
Table
Memory
Control
Trait Implementations
sourceimpl<R: Into<FlagSet<InstructionKind>>> BitAnd<R> for InstructionKind
impl<R: Into<FlagSet<InstructionKind>>> BitAnd<R> for InstructionKind
sourceimpl<R: Into<FlagSet<InstructionKind>>> BitOr<R> for InstructionKind
impl<R: Into<FlagSet<InstructionKind>>> BitOr<R> for InstructionKind
sourceimpl<R: Into<FlagSet<InstructionKind>>> BitXor<R> for InstructionKind
impl<R: Into<FlagSet<InstructionKind>>> BitXor<R> for InstructionKind
sourceimpl Clone for InstructionKind
impl Clone for InstructionKind
sourcefn clone(&self) -> InstructionKind
fn clone(&self) -> InstructionKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for InstructionKind
impl Debug for InstructionKind
sourceimpl From<InstructionKind> for FlagSet<InstructionKind>
impl From<InstructionKind> for FlagSet<InstructionKind>
sourcefn from(value: InstructionKind) -> Self
fn from(value: InstructionKind) -> Self
Converts to this type from the input type.
sourceimpl FromStr for InstructionKind
impl FromStr for InstructionKind
sourceimpl Not for InstructionKind
impl Not for InstructionKind
sourceimpl PartialEq<InstructionKind> for InstructionKind
impl PartialEq<InstructionKind> for InstructionKind
sourcefn eq(&self, other: &InstructionKind) -> bool
fn eq(&self, other: &InstructionKind) -> bool
sourceimpl<R: Into<FlagSet<InstructionKind>>> Rem<R> for InstructionKind
impl<R: Into<FlagSet<InstructionKind>>> Rem<R> for InstructionKind
sourceimpl<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 StructuralEq for InstructionKind
impl StructuralPartialEq for InstructionKind
Auto Trait Implementations
impl RefUnwindSafe for InstructionKind
impl Send for InstructionKind
impl Sync for InstructionKind
impl Unpin for InstructionKind
impl UnwindSafe for InstructionKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.