Enum fluse::Outcome[][src]

pub enum Outcome<'a> {
    Passed(&'a str),
    Failed(&'a str),
    Ignored,
}

The outcome of a check.

Variants

The check passed.

The check failed.

The check was ignored.

Methods

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

Check whether the outcome is failed.

Auto Trait Implementations

impl<'a> Send for Outcome<'a>

impl<'a> Sync for Outcome<'a>