pub struct TraceFrame {
pub definition: String,
}Expand description
One frame of a definition-level trace.
The runtime only carries these; filling them in is the interpreter’s and daemon’s job (debug-mode instrumentation, design §4.9).
Fields§
§definition: StringThe Trellis definition name, e.g. "csvstats::median".
Trait 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 (const: unstable) · 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
Source§impl PartialEq for TraceFrame
impl PartialEq for TraceFrame
Source§fn eq(&self, other: &TraceFrame) -> bool
fn eq(&self, other: &TraceFrame) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TraceFrame
impl StructuralPartialEq 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 UnsafeUnpin 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