pub struct FailureAttributionReport {
pub run_id: String,
pub run_status: String,
pub failed_steps: Vec<Step>,
pub pending_verification: Vec<ToolLedgerEntry>,
pub pending_approvals: Vec<ApprovalRequest>,
pub failure_events: Vec<Event>,
pub summary: State,
}Fields§
§run_id: String§run_status: String§failed_steps: Vec<Step>§pending_verification: Vec<ToolLedgerEntry>§pending_approvals: Vec<ApprovalRequest>§failure_events: Vec<Event>§summary: StateTrait Implementations§
Source§impl Clone for FailureAttributionReport
impl Clone for FailureAttributionReport
Source§fn clone(&self) -> FailureAttributionReport
fn clone(&self) -> FailureAttributionReport
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 FailureAttributionReport
impl RefUnwindSafe for FailureAttributionReport
impl Send for FailureAttributionReport
impl Sync for FailureAttributionReport
impl Unpin for FailureAttributionReport
impl UnsafeUnpin for FailureAttributionReport
impl UnwindSafe for FailureAttributionReport
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