pub struct StackFrameInspection {
pub return_module: Atom,
pub return_module_name: String,
pub return_ip: usize,
pub function: Option<FunctionInspection>,
pub locals: Vec<RegisterInspection>,
}Expand description
One stack frame in top-to-bottom inspection order.
Fields§
§return_module: AtomSaved return module atom.
return_module_name: StringSaved return module name.
return_ip: usizeSaved return instruction pointer.
function: Option<FunctionInspection>Function containing the saved return IP, if known.
locals: Vec<RegisterInspection>Y-register locals in this frame.
Trait Implementations§
Source§impl Clone for StackFrameInspection
impl Clone for StackFrameInspection
Source§fn clone(&self) -> StackFrameInspection
fn clone(&self) -> StackFrameInspection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StackFrameInspection
impl Debug for StackFrameInspection
impl Eq for StackFrameInspection
Source§impl PartialEq for StackFrameInspection
impl PartialEq for StackFrameInspection
impl StructuralPartialEq for StackFrameInspection
Auto Trait Implementations§
impl Freeze for StackFrameInspection
impl RefUnwindSafe for StackFrameInspection
impl Send for StackFrameInspection
impl Sync for StackFrameInspection
impl Unpin for StackFrameInspection
impl UnsafeUnpin for StackFrameInspection
impl UnwindSafe for StackFrameInspection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.