[−][src]Enum pwasm_utils::Instruction
Instruction.
Variants
Block(BlockType)Loop(BlockType)If(BlockType)Br(u32)BrIf(u32)BrTable(Box<BrTableData, Global>)Call(u32)GetLocal(u32)SetLocal(u32)TeeLocal(u32)GetGlobal(u32)SetGlobal(u32)CurrentMemory(u8)GrowMemory(u8)I32Const(i32)I64Const(i64)F32Const(u32)F64Const(u64)Implementations
impl Instruction[src]
pub fn is_block(&self) -> bool[src]
Is this instruction starts the new block (which should end with terminal instruction).
pub fn is_terminal(&self) -> bool[src]
Is this instruction determines the termination of instruction sequence?
true for Instruction::End
Trait Implementations
impl Clone for Instruction[src]
pub fn clone(&self) -> Instruction[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for Instruction[src]
impl Deserialize for Instruction[src]
type Error = Error
Serialization error produced by deserialization routine.
pub fn deserialize<R>(
reader: &mut R
) -> Result<Instruction, <Instruction as Deserialize>::Error> where
R: Read, [src]
reader: &mut R
) -> Result<Instruction, <Instruction as Deserialize>::Error> where
R: Read,
impl Display for Instruction[src]
impl Eq for Instruction[src]
impl Hash for Instruction[src]
pub fn hash<__H>(&self, state: &mut __H) where
__H: Hasher, [src]
__H: Hasher,
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<Instruction> for Instruction[src]
pub fn eq(&self, other: &Instruction) -> bool[src]
pub fn ne(&self, other: &Instruction) -> bool[src]
impl Serialize for Instruction[src]
type Error = Error
Serialization error produced by serialization routine.
pub fn serialize<W>(
self,
writer: &mut W
) -> Result<(), <Instruction as Serialize>::Error> where
W: Write, [src]
self,
writer: &mut W
) -> Result<(), <Instruction as Serialize>::Error> where
W: Write,
impl StructuralEq for Instruction[src]
impl StructuralPartialEq for Instruction[src]
Auto Trait Implementations
impl RefUnwindSafe for Instruction
impl Send for Instruction
impl Sync for Instruction
impl Unpin for Instruction
impl UnwindSafe for Instruction
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow(&self) -> &TⓘNotable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, F> Future for &'_ mut F where
F: Unpin + Future + ?Sized, type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;[src]
Notable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, F> Future for &'_ mut F where
F: Unpin + Future + ?Sized, type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut TⓘNotable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, F> Future for &'_ mut F where
F: Unpin + Future + ?Sized, type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;[src]
Notable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, F> Future for &'_ mut F where
F: Unpin + Future + ?Sized, type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,