pub enum Statement {
Label(String),
Instruction(Instruction),
Directive(Directive),
Comment(String),
}Expand description
Statement in a kernel/function body
Variants§
Label(String)
Label definition
Instruction(Instruction)
Instruction
Directive(Directive)
Directive within body
Comment(String)
Comment (preserved for debugging)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Statement
impl RefUnwindSafe for Statement
impl Send for Statement
impl Sync for Statement
impl Unpin for Statement
impl UnsafeUnpin for Statement
impl UnwindSafe for Statement
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