pub struct RunSummary {
pub run_id: RunId,
pub parent_run_id: Option<RunId>,
pub status: WorkflowStatus,
pub started_at: DateTime<Utc>,
pub closed_at: Option<DateTime<Utc>>,
}Expand description
Summary of one concrete run in a workflow’s continuation chain.
Fields§
§run_id: RunIdConcrete run identifier for this chain entry.
parent_run_id: Option<RunId>Parent run that continued as this run, or None for the first run.
status: WorkflowStatusStatus projected from this run’s slice of lifecycle events.
started_at: DateTime<Utc>Timestamp of this run’s WorkflowStarted event.
closed_at: Option<DateTime<Utc>>Timestamp of this run’s terminal lifecycle event, when closed.
Trait Implementations§
Source§impl Clone for RunSummary
impl Clone for RunSummary
Source§fn clone(&self) -> RunSummary
fn clone(&self) -> RunSummary
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 moreSource§impl Debug for RunSummary
impl Debug for RunSummary
impl Eq for RunSummary
Source§impl PartialEq for RunSummary
impl PartialEq for RunSummary
Source§fn eq(&self, other: &RunSummary) -> bool
fn eq(&self, other: &RunSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RunSummary
Auto Trait Implementations§
impl Freeze for RunSummary
impl RefUnwindSafe for RunSummary
impl Send for RunSummary
impl Sync for RunSummary
impl Unpin for RunSummary
impl UnsafeUnpin for RunSummary
impl UnwindSafe for RunSummary
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