pub enum PytestOutcome {
Passed,
Failed,
Skipped,
XFailed,
XPassed,
Error,
}Expand description
pytest outcome labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PytestOutcome
impl Clone for PytestOutcome
Source§fn clone(&self) -> PytestOutcome
fn clone(&self) -> PytestOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PytestOutcome
impl Debug for PytestOutcome
Source§impl Display for PytestOutcome
impl Display for PytestOutcome
Source§impl FromStr for PytestOutcome
impl FromStr for PytestOutcome
Source§impl Hash for PytestOutcome
impl Hash for PytestOutcome
Source§impl Ord for PytestOutcome
impl Ord for PytestOutcome
Source§fn cmp(&self, other: &PytestOutcome) -> Ordering
fn cmp(&self, other: &PytestOutcome) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PytestOutcome
impl PartialEq for PytestOutcome
Source§fn eq(&self, other: &PytestOutcome) -> bool
fn eq(&self, other: &PytestOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PytestOutcome
impl PartialOrd for PytestOutcome
impl Copy for PytestOutcome
impl Eq for PytestOutcome
impl StructuralPartialEq for PytestOutcome
Auto Trait Implementations§
impl Freeze for PytestOutcome
impl RefUnwindSafe for PytestOutcome
impl Send for PytestOutcome
impl Sync for PytestOutcome
impl Unpin for PytestOutcome
impl UnsafeUnpin for PytestOutcome
impl UnwindSafe for PytestOutcome
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