Trait cargo_culture_kit::IsSuccess[][src]

pub trait IsSuccess {
    fn is_success(&self) -> bool;

    fn assert_success(&self) { ... }
}

Trait for summarizing whether the outcome of culture checking was a total success for any of the various levels of outcome aggregation

Required Methods

Convenience function to answer the simple question "is everything all right?" while providing no answer at all to the useful question "why or why not?"

Provided Methods

Panic if is_success() returns false for this instance

Implementors