Struct gdb_command::StacktraceEntry
source · [−]pub struct StacktraceEntry {
pub address: u64,
pub module: ModuleInfo,
pub debug: DebugInfo,
}
Expand description
StacktraceEntry
struct represents the information about one line of the stacktrace.
Fields
address: u64
Function address
module: ModuleInfo
Information about the module
debug: DebugInfo
Debug information
Implementations
sourceimpl StacktraceEntry
impl StacktraceEntry
sourcepub fn new(trace: &str) -> Result<StacktraceEntry>
pub fn new(trace: &str) -> Result<StacktraceEntry>
sourcepub fn update_module(&mut self, file: &File)
pub fn update_module(&mut self, file: &File)
Trait Implementations
sourceimpl Clone for StacktraceEntry
impl Clone for StacktraceEntry
sourcefn clone(&self) -> StacktraceEntry
fn clone(&self) -> StacktraceEntry
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StacktraceEntry
impl Debug for StacktraceEntry
sourceimpl Display for StacktraceEntry
impl Display for StacktraceEntry
sourceimpl Hash for StacktraceEntry
impl Hash for StacktraceEntry
sourceimpl PartialEq<StacktraceEntry> for StacktraceEntry
impl PartialEq<StacktraceEntry> for StacktraceEntry
impl Eq for StacktraceEntry
Auto Trait Implementations
impl RefUnwindSafe for StacktraceEntry
impl Send for StacktraceEntry
impl Sync for StacktraceEntry
impl Unpin for StacktraceEntry
impl UnwindSafe for StacktraceEntry
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more