pub struct RunSummary {
pub run_id: String,
pub graph_name: String,
pub status: RunStatus,
pub total_nodes_executed: usize,
pub total_attempts: usize,
pub failed_attempts: usize,
pub trace_id: Option<String>,
pub trace_ctx: Option<TraceCtx>,
pub started_at: DateTime<Utc>,
pub finished_at: Option<DateTime<Utc>>,
}Expand description
Summary of a completed (or failed) graph run.
Fields§
§run_id: String§graph_name: String§status: RunStatus§total_nodes_executed: usize§total_attempts: usize§failed_attempts: usize§trace_id: Option<String>Phase status: compatibility / migration-only
trace_ctx: Option<TraceCtx>Canonical trace context for this run.
started_at: DateTime<Utc>§finished_at: Option<DateTime<Utc>>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
Source§impl<'de> Deserialize<'de> for RunSummary
impl<'de> Deserialize<'de> for RunSummary
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 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