pub struct StepResult {
pub name: String,
pub status: StepStatus,
pub message: String,
}Expand description
Result of a single step execution.
Fields§
§name: StringThe step name.
status: StepStatusWhether the step passed, failed, or was skipped.
message: StringHuman-readable result message.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StepResult
impl RefUnwindSafe for StepResult
impl Send for StepResult
impl Sync for StepResult
impl Unpin for StepResult
impl UnsafeUnpin for StepResult
impl UnwindSafe for StepResult
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