pub trait Pointers<F> {
// Required methods
fn pc(&self) -> F;
fn ap(&self) -> F;
fn fp(&self) -> F;
}
Expand description
This trait contains functions to obtain the Cairo pointers (program counter, allocation pointer and frame pointer)