pub struct RunPoint {
pub meta: RunMeta,
pub context: ContextSnapshot,
pub at: i64,
}Expand description
A run’s context window at one recorded point in time, with the metadata
(stage, iteration, status, …) in effect then. Produced by replay_points.
Fields§
§meta: RunMetaThe run metadata at this point.
context: ContextSnapshotThe full context window at this point.
at: i64Unix seconds this point was recorded.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunPoint
impl<'de> Deserialize<'de> for RunPoint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for RunPoint
Auto Trait Implementations§
impl Freeze for RunPoint
impl RefUnwindSafe for RunPoint
impl Send for RunPoint
impl Sync for RunPoint
impl Unpin for RunPoint
impl UnsafeUnpin for RunPoint
impl UnwindSafe for RunPoint
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