pub struct PhaseEventSummary {
pub event: Value,
pub stage_launched_ts: Option<u64>,
}Expand description
A phase’s latest event plus its newest matching stage_launched
timestamp, both from the same one-pass read (999.30 / DEN-55 IN-01) —
devflow status needs the real stage-entry time (21a) alongside the
last-action line, and previously re-scanned the whole log per phase to
get it (latest_stage_launched_ts, now folded in here).
Fields§
§event: Value§stage_launched_ts: Option<u64>Trait Implementations§
Source§impl Clone for PhaseEventSummary
impl Clone for PhaseEventSummary
Source§fn clone(&self) -> PhaseEventSummary
fn clone(&self) -> PhaseEventSummary
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 PhaseEventSummary
impl RefUnwindSafe for PhaseEventSummary
impl Send for PhaseEventSummary
impl Sync for PhaseEventSummary
impl Unpin for PhaseEventSummary
impl UnsafeUnpin for PhaseEventSummary
impl UnwindSafe for PhaseEventSummary
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