pub struct ReplayStep {
pub step: u64,
pub state: HashMap<String, Value>,
pub equations: Vec<EquationEvaluation>,
}Expand description
Single step in replay timeline
Fields§
§step: u64Step number
state: HashMap<String, Value>State snapshot
equations: Vec<EquationEvaluation>Equation evaluations at this step
Trait Implementations§
Source§impl Clone for ReplayStep
impl Clone for ReplayStep
Source§fn clone(&self) -> ReplayStep
fn clone(&self) -> ReplayStep
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReplayStep
impl Debug for ReplayStep
Source§impl<'de> Deserialize<'de> for ReplayStep
impl<'de> Deserialize<'de> for ReplayStep
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
Auto Trait Implementations§
impl Freeze for ReplayStep
impl RefUnwindSafe for ReplayStep
impl Send for ReplayStep
impl Sync for ReplayStep
impl Unpin for ReplayStep
impl UnsafeUnpin for ReplayStep
impl UnwindSafe for ReplayStep
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