Enum GoTestOutcome
pub enum GoTestOutcome {
Passed,
Failed,
Skipped,
Panicked,
TimedOut,
}Expand description
Go test outcome metadata.
Variants§
Implementations§
§impl GoTestOutcome
impl GoTestOutcome
Trait Implementations§
§impl Clone for GoTestOutcome
impl Clone for GoTestOutcome
§fn clone(&self) -> GoTestOutcome
fn clone(&self) -> GoTestOutcome
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 more§impl Debug for GoTestOutcome
impl Debug for GoTestOutcome
§impl Display for GoTestOutcome
impl Display for GoTestOutcome
§impl FromStr for GoTestOutcome
impl FromStr for GoTestOutcome
§type Err = GoTestError
type Err = GoTestError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<GoTestOutcome, <GoTestOutcome as FromStr>::Err>
fn from_str( value: &str, ) -> Result<GoTestOutcome, <GoTestOutcome as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for GoTestOutcome
impl Hash for GoTestOutcome
§impl Ord for GoTestOutcome
impl Ord for GoTestOutcome
§impl PartialEq for GoTestOutcome
impl PartialEq for GoTestOutcome
§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