Trait suppositions::CheckResult [] [src]

pub trait CheckResult {
    fn is_failure(&self) -> bool;
}

This represents something that a check can return.

Required Methods

Check whether this result witnesses a failure.

Implementations on Foreign Types

impl CheckResult for bool
[src]

[src]

impl<O: CheckResult, E> CheckResult for Result<O, E>
[src]

[src]

impl CheckResult for ()
[src]

[src]

Implementors