pub struct FalsificationCheck {
pub id: String,
pub category: FalsificationCategory,
pub description: String,
pub mutation: String,
pub expected_failure: String,
}Expand description
A single falsification check.
Fields§
§id: StringCheck ID (F001-F100).
category: FalsificationCategoryCategory (existence, content, color, layout, keybinding, data, performance, accessibility).
description: StringCheck description.
mutation: StringMutation to apply.
expected_failure: StringExpected failure message.
Trait Implementations§
Source§impl Clone for FalsificationCheck
impl Clone for FalsificationCheck
Source§fn clone(&self) -> FalsificationCheck
fn clone(&self) -> FalsificationCheck
Returns a duplicate of the value. Read more
1.0.0 · 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 FalsificationCheck
impl RefUnwindSafe for FalsificationCheck
impl Send for FalsificationCheck
impl Sync for FalsificationCheck
impl Unpin for FalsificationCheck
impl UnsafeUnpin for FalsificationCheck
impl UnwindSafe for FalsificationCheck
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