pub struct TimelineFork {
pub source_run_id: RunId,
pub branch_id: RunId,
pub fork_point_seq: Seq,
pub alternate_event: Option<Event>,
}Expand description
A timeline fork: represents a forked execution from a checkpoint.
Fields§
§source_run_id: RunIdOriginal run that was forked.
branch_id: RunIdNew branch (forked) run id.
fork_point_seq: SeqSequence number of the fork point (events up to and including this seq were replayed).
alternate_event: Option<Event>The alternate event injected at the fork point (if any).
Trait Implementations§
Source§impl Clone for TimelineFork
impl Clone for TimelineFork
Source§fn clone(&self) -> TimelineFork
fn clone(&self) -> TimelineFork
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 TimelineFork
impl Debug for TimelineFork
Source§impl<'de> Deserialize<'de> for TimelineFork
impl<'de> Deserialize<'de> for TimelineFork
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 TimelineFork
impl RefUnwindSafe for TimelineFork
impl Send for TimelineFork
impl Sync for TimelineFork
impl Unpin for TimelineFork
impl UnsafeUnpin for TimelineFork
impl UnwindSafe for TimelineFork
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