pub struct AlwaysPassCase {
pub name: String,
pub category: String,
pub duration_ms: u64,
}Expand description
A minimal no-op evaluation case useful for unit-testing the evaluation infrastructure itself.
Fields§
§name: StringShort identifier for this case.
category: StringCategory label for grouping.
duration_ms: u64Simulated duration in milliseconds returned by each trial.
Implementations§
Trait Implementations§
Source§impl EvaluationCase for AlwaysPassCase
impl EvaluationCase for AlwaysPassCase
Auto Trait Implementations§
impl Freeze for AlwaysPassCase
impl RefUnwindSafe for AlwaysPassCase
impl Send for AlwaysPassCase
impl Sync for AlwaysPassCase
impl Unpin for AlwaysPassCase
impl UnsafeUnpin for AlwaysPassCase
impl UnwindSafe for AlwaysPassCase
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