pub struct SourceBacktrace { /* private fields */ }
Expand description
Backtrace that also contains the exact line and file in which it originated from.
Usually created in a macro using the line!()
and file!()
macros
Implementations§
Trait Implementations§
Source§impl Clone for SourceBacktrace
impl Clone for SourceBacktrace
Source§fn clone(&self) -> SourceBacktrace
fn clone(&self) -> SourceBacktrace
Returns a copy of the value. Read more
1.0.0 · 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 SourceBacktrace
impl Debug for SourceBacktrace
Source§impl From<Backtrace> for SourceBacktrace
impl From<Backtrace> for SourceBacktrace
Source§fn from(backtrace: Backtrace) -> SourceBacktrace
fn from(backtrace: Backtrace) -> SourceBacktrace
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SourceBacktrace
impl RefUnwindSafe for SourceBacktrace
impl Send for SourceBacktrace
impl Sync for SourceBacktrace
impl Unpin for SourceBacktrace
impl UnwindSafe for SourceBacktrace
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