pub struct JobRunResult {
pub state: WorkflowState,
pub started_at: Option<DateTime<Utc>>,
pub ended_at: Option<DateTime<Utc>>,
pub steps: Vec<StepRunResult>,
}Fields§
§state: WorkflowState§started_at: Option<DateTime<Utc>>§ended_at: Option<DateTime<Utc>>§steps: Vec<StepRunResult>Trait Implementations§
Auto Trait Implementations§
impl Freeze for JobRunResult
impl !RefUnwindSafe for JobRunResult
impl Send for JobRunResult
impl Sync for JobRunResult
impl Unpin for JobRunResult
impl !UnwindSafe for JobRunResult
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