pub struct Frame {
pub module: Option<String>,
pub symbol: Option<String>,
pub filename: Option<String>,
pub lineno: Option<u32>,
pub instruction_addr: Addr,
}Expand description
Represents a single frame.
Fields§
§module: Option<String>The module of the frame.
symbol: Option<String>The symbol of the frame if available.
filename: Option<String>The filename of the frame if available.
lineno: Option<u32>The line number of the frame if available.
instruction_addr: AddrTrait Implementations§
Auto Trait Implementations§
impl Freeze for Frame
impl RefUnwindSafe for Frame
impl Send for Frame
impl Sync for Frame
impl Unpin for Frame
impl UnwindSafe for Frame
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