pub struct Op {
pub opcode: u8,
pub description: String,
pub short: String,
pub panics: Vec<String>,
pub num_arg_bytes: u8,
pub stack_in: Vec<String>,
pub stack_out: StackOut,
}
Expand description
A single operation.
For the meaning of each of these fields, refer to the essential-asm-spec
crate README.
Fields§
§opcode: u8
§description: String
§short: String
§panics: Vec<String>
§num_arg_bytes: u8
§stack_in: Vec<String>
§stack_out: StackOut
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Op
impl<'de> Deserialize<'de> for Op
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Op
impl RefUnwindSafe for Op
impl Send for Op
impl Sync for Op
impl Unpin for Op
impl UnwindSafe for Op
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