pub enum Statement {
Expression {
result: Variable,
op: Operation,
},
Flow {
op: FlowOperation,
},
Memory {
op: MemoryOperation,
result: Segment,
},
}Expand description
A single IL statement.
Variants
Expression
Fields
result: VariableValue that the operation result is assigned to
op: OperationOperation and its arguments
A single RREIL statement.
Flow
Fields
op: FlowOperationOperation
Interprocedural control flow operation
Memory
Fields
op: MemoryOperationOperation
result: SegmentMemory segment resulting from the memory operation.
A memory operation
Implementations
Trait Implementations
impl Eq for Statement
impl StructuralEq for Statement
impl StructuralPartialEq for Statement
Auto Trait Implementations
impl RefUnwindSafe for Statement
impl Send for Statement
impl Sync for Statement
impl Unpin for Statement
impl UnwindSafe for Statement
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.