pub struct TraceEntry {
pub stage: Stage,
pub paradigm: Option<Paradigm>,
pub description: &'static str,
pub outcome: EntryOutcome,
}Expand description
A single step in the logic trace.
Fields§
§stage: StageWhich pipeline stage produced this entry.
paradigm: Option<Paradigm>The paradigm involved, if applicable.
description: &'static strHuman-readable description (static string for zero-allocation on embedded).
outcome: EntryOutcomeThe outcome of this step.
Trait Implementations§
Source§impl Clone for TraceEntry
impl Clone for TraceEntry
Source§fn clone(&self) -> TraceEntry
fn clone(&self) -> TraceEntry
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 Freeze for TraceEntry
impl RefUnwindSafe for TraceEntry
impl Send for TraceEntry
impl Sync for TraceEntry
impl Unpin for TraceEntry
impl UnsafeUnpin for TraceEntry
impl UnwindSafe for TraceEntry
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