pub struct LoadedRun {Show 30 fields
pub manifest: Manifest,
pub state: RunState,
pub graph_steps: Vec<StepRecord>,
pub taken_transitions: Vec<String>,
pub graph_cursor: u64,
pub step_start: u64,
pub step_total: u64,
pub snapshot: Option<DefinitionSnapshot>,
pub trace: Vec<TraceEvent>,
pub trace_start: u64,
pub trace_total: u64,
pub session_binding: Option<SessionBinding>,
pub session_entries: Vec<SessionEntryRecord>,
pub session_entry_start: u64,
pub session_entry_total: u64,
pub session_events: Vec<SessionEventRecord>,
pub session_event_start: u64,
pub session_event_total: u64,
pub session_capture: Option<SessionCapture>,
pub session_replay_checkpoint: Option<Value>,
pub settings_scopes: Vec<Value>,
pub settings_start: u64,
pub settings_total: u64,
pub follow_up_queue: Option<Value>,
pub follow_up_start: u64,
pub follow_up_total: u64,
pub update_start: u64,
pub update_total: u64,
pub possibly_interrupted: bool,
pub presentation_revision: u64,
}Fields§
§manifest: Manifest§state: RunState§graph_steps: Vec<StepRecord>§taken_transitions: Vec<String>§graph_cursor: u64§step_start: u64§step_total: u64§snapshot: Option<DefinitionSnapshot>§trace: Vec<TraceEvent>§trace_start: u64§trace_total: u64§session_binding: Option<SessionBinding>§session_entries: Vec<SessionEntryRecord>§session_entry_start: u64§session_entry_total: u64§session_events: Vec<SessionEventRecord>§session_event_start: u64§session_event_total: u64§session_capture: Option<SessionCapture>§session_replay_checkpoint: Option<Value>§settings_scopes: Vec<Value>§settings_start: u64§settings_total: u64§follow_up_queue: Option<Value>§follow_up_start: u64§follow_up_total: u64§update_start: u64§update_total: u64§possibly_interrupted: bool§presentation_revision: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadedRun
impl RefUnwindSafe for LoadedRun
impl Send for LoadedRun
impl Sync for LoadedRun
impl Unpin for LoadedRun
impl UnsafeUnpin for LoadedRun
impl UnwindSafe for LoadedRun
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more