pub struct SkippedTest {
pub name: String,
pub reason: String,
}Expand description
A test-* word that was discovered by name but skipped because its
stack effect isn’t ( -- ). Used for diagnostics, not execution.
Fields§
§name: StringWord name as written in source
reason: StringHuman-readable reason — either a surface stack effect like
( Int Int -- Bool ) or “no stack effect declared”.
Trait Implementations§
Source§impl Clone for SkippedTest
impl Clone for SkippedTest
Source§fn clone(&self) -> SkippedTest
fn clone(&self) -> SkippedTest
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 SkippedTest
impl RefUnwindSafe for SkippedTest
impl Send for SkippedTest
impl Sync for SkippedTest
impl Unpin for SkippedTest
impl UnsafeUnpin for SkippedTest
impl UnwindSafe for SkippedTest
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