pub struct TaskFailed {
pub task_id: String,
pub error: String,
pub requirement_id: Option<String>,
}Expand description
An event fired when a task fails.
Fields§
§task_id: StringStable task identity.
error: StringHuman-readable failure description.
requirement_id: Option<String>Traceability link to the originating requirement, if present.
Trait Implementations§
Source§impl Clone for TaskFailed
impl Clone for TaskFailed
Source§fn clone(&self) -> TaskFailed
fn clone(&self) -> TaskFailed
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 TaskFailed
impl RefUnwindSafe for TaskFailed
impl Send for TaskFailed
impl Sync for TaskFailed
impl Unpin for TaskFailed
impl UnsafeUnpin for TaskFailed
impl UnwindSafe for TaskFailed
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