pub struct TraceFrame {
pub file_name: String,
pub line_number: u32,
pub class: String,
pub method: String,
pub vendor_frame: bool,
}Expand description
Single frame entry for trace payloads.
Fields§
§file_name: String§line_number: u32§class: String§method: String§vendor_frame: boolTrait Implementations§
Source§impl Clone for TraceFrame
impl Clone for TraceFrame
Source§fn clone(&self) -> TraceFrame
fn clone(&self) -> TraceFrame
Returns a duplicate 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 TraceFrame
impl Debug for TraceFrame
Auto Trait Implementations§
impl Freeze for TraceFrame
impl RefUnwindSafe for TraceFrame
impl Send for TraceFrame
impl Sync for TraceFrame
impl Unpin for TraceFrame
impl UnwindSafe for TraceFrame
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