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