pub struct WorkflowResult {
pub workflow_run_id: String,
pub workflow_name: String,
pub all_succeeded: bool,
pub total_duration_ms: i64,
pub extensions: Extensions,
}Expand description
Result of executing a workflow.
Fields§
§workflow_run_id: String§workflow_name: String§all_succeeded: bool§total_duration_ms: i64§extensions: ExtensionsTrait Implementations§
Source§impl Clone for WorkflowResult
impl Clone for WorkflowResult
Source§fn clone(&self) -> WorkflowResult
fn clone(&self) -> WorkflowResult
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 moreAuto Trait Implementations§
impl Freeze for WorkflowResult
impl !RefUnwindSafe for WorkflowResult
impl Send for WorkflowResult
impl Sync for WorkflowResult
impl Unpin for WorkflowResult
impl UnsafeUnpin for WorkflowResult
impl !UnwindSafe for WorkflowResult
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