pub struct Opcodes {
pub yield: u8,
pub add: u8,
pub escape_sequence: u8,
pub message1: u8,
pub message2: u8,
pub push_int: u8,
pub push_string: u8,
pub syscall: u8,
pub line_number: u8,
pub nop1: u8,
pub nop2: u8,
pub is_message1_obfuscated: bool,
}Available on crate feature
silky only.Fields§
§yield: u8§add: u8§escape_sequence: u8§message1: u8§message2: u8§push_int: u8§push_string: u8§syscall: u8§line_number: u8§nop1: u8§nop2: u8§is_message1_obfuscated: boolAuto Trait Implementations§
impl Freeze for Opcodes
impl RefUnwindSafe for Opcodes
impl Send for Opcodes
impl Sync for Opcodes
impl Unpin for Opcodes
impl UnwindSafe for Opcodes
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more