[−][src]Enum loa::bytecode::Instruction
Variants
DeclareClass(String)UseVariable(u64)UseMethod(u64)LoadObject(u64)CallNative(NativeMethod)LoadLocal(u16)DropLocal(u16)StoreGlobal(u64)LoadGlobal(u64)Return(u16)ReturnLazy(u16)MarkClassTrue(u64)MarkClassFalse(u64)MarkClassString(u64)MarkClassCharacter(u64)MarkClassSymbol(u64)MarkClassU8(u64)MarkClassU16(u64)MarkClassU32(u64)MarkClassU64(u64)MarkClassU128(u64)MarkClassUBig(u64)MarkClassI8(u64)MarkClassI16(u64)MarkClassI32(u64)MarkClassI64(u64)MarkClassI128(u64)MarkClassIBig(u64)MarkClassF32(u64)MarkClassF64(u64)MarkClassFBig(u64)LoadConstString(String)LoadConstCharacter(u16)LoadConstSymbol(String)LoadConstU8(u8)LoadConstU16(u16)LoadConstU32(u32)LoadConstU64(u64)LoadConstU128(u128)LoadConstUBig(BigUint)LoadConstI8(i8)LoadConstI16(i16)LoadConstI32(i32)LoadConstI64(i64)LoadConstI128(i128)LoadConstIBig(BigInt)LoadConstF32(f32)LoadConstF64(f64)LoadConstFBig(BigFraction)Trait Implementations
impl BytecodeEncoding for Instruction[src]
fn serialize<W: Write>(&self, w: W) -> Result<usize>[src]
fn deserialize<R: Read>(r: R) -> Result<Instruction>[src]
fn rotate(&self) -> Result<Self>[src]
impl Clone for Instruction[src]
fn clone(&self) -> Instruction[src]
fn clone_from(&mut self, source: &Self)1.0.0[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,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
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.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
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.
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>,