pub enum GoTestOutcome {
Passed,
Failed,
Skipped,
Panicked,
TimedOut,
}Expand description
Go test outcome metadata.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for GoTestOutcome
impl Clone for GoTestOutcome
Source§fn clone(&self) -> GoTestOutcome
fn clone(&self) -> GoTestOutcome
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 GoTestOutcome
impl Debug for GoTestOutcome
Source§impl Display for GoTestOutcome
impl Display for GoTestOutcome
Source§impl FromStr for GoTestOutcome
impl FromStr for GoTestOutcome
Source§impl Hash for GoTestOutcome
impl Hash for GoTestOutcome
Source§impl Ord for GoTestOutcome
impl Ord for GoTestOutcome
Source§fn cmp(&self, other: &GoTestOutcome) -> Ordering
fn cmp(&self, other: &GoTestOutcome) -> 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 GoTestOutcome
impl PartialEq for GoTestOutcome
Source§fn eq(&self, other: &GoTestOutcome) -> bool
fn eq(&self, other: &GoTestOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for GoTestOutcome
impl PartialOrd for GoTestOutcome
impl Copy for GoTestOutcome
impl Eq for GoTestOutcome
impl StructuralPartialEq for GoTestOutcome
Auto Trait Implementations§
impl Freeze for GoTestOutcome
impl RefUnwindSafe for GoTestOutcome
impl Send for GoTestOutcome
impl Sync for GoTestOutcome
impl Unpin for GoTestOutcome
impl UnsafeUnpin for GoTestOutcome
impl UnwindSafe for GoTestOutcome
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