pub struct RecipeRun {
pub recipe: String,
pub forms: usize,
pub results: Vec<String>,
pub checks: Vec<CheckResult>,
pub ok: bool,
}Expand description
The outcome of running a recipe’s setup through its codec.
Fields§
§recipe: StringThe recipe id that was run.
forms: usizeNumber of setup forms evaluated.
results: Vec<String>Encoded result of each form, in the recipe’s codec.
checks: Vec<CheckResult>Expectation check results (empty when no expectations).
ok: boolTrue when every form evaluated and every check passed.
Trait Implementations§
impl Eq for RecipeRun
impl StructuralPartialEq for RecipeRun
Auto Trait Implementations§
impl Freeze for RecipeRun
impl RefUnwindSafe for RecipeRun
impl Send for RecipeRun
impl Sync for RecipeRun
impl Unpin for RecipeRun
impl UnsafeUnpin for RecipeRun
impl UnwindSafe for RecipeRun
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