Enum cranelift_codegen::cursor::CursorPosition [−][src]
The possible positions of a cursor.
Variants
NowhereCursor is not pointing anywhere. No instructions can be inserted.
At(Inst)Cursor is pointing at an existing instruction. New instructions will be inserted before the current instruction.
Before(Ebb)Cursor is before the beginning of an EBB. No instructions can be inserted. Calling
next_inst() will move to the first instruction in the EBB.
After(Ebb)Cursor is pointing after the end of an EBB. New instructions will be appended to the EBB.
Trait Implementations
impl Clone for CursorPosition[src]
impl Clone for CursorPositionfn clone(&self) -> CursorPosition[src]
fn clone(&self) -> CursorPositionReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for CursorPosition[src]
impl Copy for CursorPositionimpl PartialEq for CursorPosition[src]
impl PartialEq for CursorPositionfn eq(&self, other: &CursorPosition) -> bool[src]
fn eq(&self, other: &CursorPosition) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &CursorPosition) -> bool[src]
fn ne(&self, other: &CursorPosition) -> boolThis method tests for !=.
impl Eq for CursorPosition[src]
impl Eq for CursorPositionimpl Debug for CursorPosition[src]
impl Debug for CursorPositionAuto Trait Implementations
impl Send for CursorPosition
impl Send for CursorPositionimpl Sync for CursorPosition
impl Sync for CursorPosition