pub struct TraceRef {
pub run: String,
pub seq: u64,
}Expand description
A stable reference to one call in one run’s event feed: the run id plus
the seq of the call’s call_start line. Rendered <run>#<seq> — the
token Tier 1 failure messages carry after trace: keel trace.
Fields§
§run: StringThe run id (the event file’s stem).
seq: u64The seq of the call’s call_start event.
Implementations§
Trait Implementations§
impl Eq for TraceRef
impl StructuralPartialEq for TraceRef
Auto Trait Implementations§
impl Freeze for TraceRef
impl RefUnwindSafe for TraceRef
impl Send for TraceRef
impl Sync for TraceRef
impl Unpin for TraceRef
impl UnsafeUnpin for TraceRef
impl UnwindSafe for TraceRef
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