pub struct RuntimeStackFrame<'a> {
pub line: u32,
pub column: u32,
pub function: &'a [u8],
pub file: &'a [u8],
pub type_name: &'a [u8],
}Fields§
§line: u32Line number in source file (0 if unknown)
column: u32Column number in source file (0 if unknown)
function: &'a [u8]Function name (fully qualified if possible)
file: &'a [u8]Source file name
type_name: &'a [u8]Type name (class/module/namespace/etc.)
Trait Implementations§
Source§impl<'a> Clone for RuntimeStackFrame<'a>
impl<'a> Clone for RuntimeStackFrame<'a>
Source§fn clone(&self) -> RuntimeStackFrame<'a>
fn clone(&self) -> RuntimeStackFrame<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for RuntimeStackFrame<'a>
impl<'a> RefUnwindSafe for RuntimeStackFrame<'a>
impl<'a> Send for RuntimeStackFrame<'a>
impl<'a> Sync for RuntimeStackFrame<'a>
impl<'a> Unpin for RuntimeStackFrame<'a>
impl<'a> UnsafeUnpin for RuntimeStackFrame<'a>
impl<'a> UnwindSafe for RuntimeStackFrame<'a>
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