pub struct RunSummary {
pub run_id: String,
pub task_id: String,
pub state: RunState,
pub created_at: u64,
pub scheduled_at: u64,
pub attempt_count: u32,
pub concurrency_key: Option<String>,
}Expand description
A stable run summary returned by the runs list endpoint.
Fields§
§run_id: StringRun identifier as a stable string.
task_id: StringTask identifier as a stable string.
state: RunStateRun state (serialized via serde).
created_at: u64Run creation timestamp derived from the WAL event.
scheduled_at: u64Run scheduled_at timestamp.
attempt_count: u32Number of attempts made for this run.
concurrency_key: Option<String>Concurrency key from task constraints, or null if task is missing.
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 · 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
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