Enum cranelift_codegen::cursor::CursorPosition [−][src]
The possible positions of a cursor.
Variants
Cursor 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(Block)
Cursor is before the beginning of a block. No instructions can be inserted. Calling
next_inst()
will move to the first instruction in the block.
After(Block)
Cursor is pointing after the end of a block. New instructions will be appended to the block.
Trait Implementations
impl Clone for CursorPosition
[src]
impl Clone for CursorPosition
[src]fn clone(&self) -> CursorPosition
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl PartialEq<CursorPosition> for CursorPosition
[src]
impl PartialEq<CursorPosition> for CursorPosition
[src]