Struct cairo_vm::vm::trace::trace_entry::TraceEntry
source · pub struct TraceEntry {
pub pc: Relocatable,
pub ap: Relocatable,
pub fp: Relocatable,
}Expand description
A trace entry for every instruction that was executed. Holds the register values before the instruction was executed.
Fields§
§pc: Relocatable§ap: Relocatable§fp: RelocatableTrait Implementations§
source§impl Debug for TraceEntry
impl Debug for TraceEntry
source§impl PartialEq<TraceEntry> for TraceEntry
impl PartialEq<TraceEntry> for TraceEntry
source§fn eq(&self, other: &TraceEntry) -> bool
fn eq(&self, other: &TraceEntry) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for TraceEntry
impl StructuralEq for TraceEntry
impl StructuralPartialEq for TraceEntry
Auto Trait Implementations§
impl RefUnwindSafe for TraceEntry
impl Send for TraceEntry
impl Sync for TraceEntry
impl Unpin for TraceEntry
impl UnwindSafe for TraceEntry
Blanket Implementations§
source§impl<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,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.