Struct rust_debug::call_stack::CallFrame[][src]

pub struct CallFrame {
    pub id: u64,
    pub registers: [Option<u32>; 16],
    pub code_location: u64,
    pub cfa: Option<u32>,
    pub start_address: u64,
    pub end_address: u64,
}
Expand description

Describes what a call frame contains.

Fields

id: u64

The identifier of the call frame.

registers: [Option<u32>; 16]

Preserved register values of the call frame.

code_location: u64

The current code location in the frame.

cfa: Option<u32>

The Canonical Frame Address for this frame.

start_address: u64

First machine code address of this frame.

end_address: u64

Last machine code address of this frame.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.