pub struct TraceStep {
pub node: NodeId,
pub kind: &'static str,
pub at_ms: u64,
pub detail: StepDetail,
}Expand description
One executed node and what happened there.
Fields§
§node: NodeId§kind: &'static str§at_ms: u64Milliseconds since the run started (≈ since the call was answered) — places the step on the call’s timeline, and later on the recording’s waveform.
detail: StepDetailTrait Implementations§
impl StructuralPartialEq for TraceStep
Auto Trait Implementations§
impl Freeze for TraceStep
impl RefUnwindSafe for TraceStep
impl Send for TraceStep
impl Sync for TraceStep
impl Unpin for TraceStep
impl UnsafeUnpin for TraceStep
impl UnwindSafe for TraceStep
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