Struct fasteval2::compiler::InstructionI
source · pub struct InstructionI(pub usize);
Expand description
An InstructionI
represents an index into Slab.cs.instrs
.
It behaves much like a pointer or reference, but it is ‘safe’ (unlike a raw pointer) and is not managed by the Rust borrow checker (unlike a reference).
Tuple Fields§
§0: usize
Trait Implementations§
source§impl Clone for InstructionI
impl Clone for InstructionI
source§fn clone(&self) -> InstructionI
fn clone(&self) -> InstructionI
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more