pub struct Case {
pub name: Arc<str>,
pub outcome: Outcome,
pub stubbed: Vec<Stubbed>,
pub runs: u64,
}Fields§
§name: Arc<str>§outcome: Outcome§stubbed: Vec<Stubbed>What §21.3 rule 1’s hidden default did, so it is not hidden: every definition that was stubbed, the atom that caused it, the value it returned and how often it was called.
runs: u64Inputs actually run, for a property.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Case
impl RefUnwindSafe for Case
impl Send for Case
impl Sync for Case
impl Unpin for Case
impl UnwindSafe for Case
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