Enum parables_testing::test_runner::Outcome[][src]

pub enum Outcome {
    Failed(PanicInfo),
    Errored(Error),
    Ok,
}

The outcome of a single test.

Variants

Contains information about the failed outcome.

An error was raised.

Only indicates that the test was successful.

Trait Implementations

impl PartialEq for Outcome
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Outcome

impl Sync for Outcome