pub enum ByteCodeType {
ICONST(i32),
IADD(usize),
ISUB(usize),
FOWARD(usize),
BACKWARD(usize),
LOOP(usize),
END(usize),
WRITE(usize),
READ(usize),
INVALID,
}
Variants§
ICONST(i32)
IADD(usize)
ISUB(usize)
FOWARD(usize)
BACKWARD(usize)
LOOP(usize)
END(usize)
WRITE(usize)
READ(usize)
INVALID
Trait Implementations§
Source§impl Debug for ByteCodeType
impl Debug for ByteCodeType
Source§impl Display for ByteCodeType
impl Display for ByteCodeType
Source§impl<'a> From<&'a str> for ByteCodeType
impl<'a> From<&'a str> for ByteCodeType
Source§fn from(line: &str) -> ByteCodeType
fn from(line: &str) -> ByteCodeType
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ByteCodeType
impl RefUnwindSafe for ByteCodeType
impl Send for ByteCodeType
impl Sync for ByteCodeType
impl Unpin for ByteCodeType
impl UnwindSafe for ByteCodeType
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