[][src]Enum juxr::reports::TestResult

pub enum TestResult<'a> {
    Success,
    Failure {
        type_: Cow<'a, str>,
        message: Cow<'a, str>,
    },
    Skipped {
        message: Cow<'a, str>,
    },
    Error {
        type_: Cow<'a, str>,
        message: Cow<'a, str>,
    },
}

Represents the result of a test

Variants

Success
Failure

Fields of Failure

type_: Cow<'a, str>message: Cow<'a, str>
Skipped

Fields of Skipped

message: Cow<'a, str>
Error

Fields of Error

type_: Cow<'a, str>message: Cow<'a, str>

Implementations

impl<'a> TestResult<'a>[src]

pub fn success() -> TestResult<'a>[src]

creates a successful test result

pub fn failure(message: &str) -> TestResult<'a>[src]

creates a failed test result

pub fn error(message: &str) -> TestResult<'a>[src]

creates an unexpected error test result

pub fn skipped(message: &str) -> TestResult<'a>[src]

creates a skipped test result

pub fn message(&'a self) -> Option<&'a str>[src]

extracts the message from the test result

Trait Implementations

impl<'a> Clone for TestResult<'a>[src]

impl<'a> Debug for TestResult<'a>[src]

impl<'a> PartialEq<TestResult<'a>> for TestResult<'a>[src]

impl<'a> StructuralPartialEq for TestResult<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for TestResult<'a>[src]

impl<'a> Send for TestResult<'a>[src]

impl<'a> Sync for TestResult<'a>[src]

impl<'a> Unpin for TestResult<'a>[src]

impl<'a> UnwindSafe for TestResult<'a>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,