pub struct AlwaysFailCase {
pub name: String,
pub category: String,
pub error_msg: String,
}Expand description
A no-op evaluation case that always fails — useful for testing failure paths.
Fields§
§name: StringShort identifier for this case.
category: StringCategory label for grouping.
error_msg: StringError message returned by each trial.
Implementations§
Trait Implementations§
Source§impl EvaluationCase for AlwaysFailCase
impl EvaluationCase for AlwaysFailCase
Auto Trait Implementations§
impl Freeze for AlwaysFailCase
impl RefUnwindSafe for AlwaysFailCase
impl Send for AlwaysFailCase
impl Sync for AlwaysFailCase
impl Unpin for AlwaysFailCase
impl UnsafeUnpin for AlwaysFailCase
impl UnwindSafe for AlwaysFailCase
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