pub enum Statement {
Expression {
result: Variable,
op: Operation,
},
Flow {
op: FlowOperation,
},
Memory {
op: MemoryOperation,
result: Segment,
},
}Expand description
A single IL statement.
Variants§
Expression
A single RREIL statement.
Fields
Flow
Interprocedural control flow operation
Fields
§
op: FlowOperationOperation
Memory
A memory operation
Fields
§
op: MemoryOperationOperation
Implementations§
Trait Implementations§
impl Eq for Statement
impl StructuralPartialEq for Statement
Auto Trait Implementations§
impl Freeze for Statement
impl RefUnwindSafe for Statement
impl Send for Statement
impl Sync for Statement
impl Unpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.