Struct evm_adapters::sputnik::cheatcodes::debugger::DebugNode [−][src]
pub struct DebugNode {
pub parent: Option<usize>,
pub children: Vec<usize>,
pub location: usize,
pub idx: usize,
pub address: Address,
pub depth: usize,
pub steps: Vec<DebugStep>,
}Expand description
A node in the arena
Fields
parent: Option<usize>Parent node index in the arena
children: Vec<usize>Children node indexes in the arena
location: usizeLocation in parent
idx: usizeThis node’s index in the arena
address: AddressAddress context
depth: usizeDepth
steps: Vec<DebugStep>The debug steps
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for DebugNode
impl UnwindSafe for DebugNode
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more