pub struct WorkflowRunReport {
pub schema_version: &'static str,
pub command: &'static str,
pub workflow_name: Option<String>,
pub on_error: WorkflowOnError,
pub summary: WorkflowRunSummary,
pub ledger: Vec<StepLedgerEntry>,
}Fields§
§schema_version: &'static str§command: &'static str§workflow_name: Option<String>§on_error: WorkflowOnError§summary: WorkflowRunSummary§ledger: Vec<StepLedgerEntry>Trait Implementations§
Source§impl Clone for WorkflowRunReport
impl Clone for WorkflowRunReport
Source§fn clone(&self) -> WorkflowRunReport
fn clone(&self) -> WorkflowRunReport
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 WorkflowRunReport
impl Debug for WorkflowRunReport
Auto Trait Implementations§
impl Freeze for WorkflowRunReport
impl RefUnwindSafe for WorkflowRunReport
impl Send for WorkflowRunReport
impl Sync for WorkflowRunReport
impl Unpin for WorkflowRunReport
impl UnsafeUnpin for WorkflowRunReport
impl UnwindSafe for WorkflowRunReport
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