TestResult

Type Alias TestResult 

Source
pub type TestResult<T> = Result<T, TestError>;
Expand description

Result type for test operations.

Aliased Type§

pub enum TestResult<T> {
    Ok(T),
    Err(TestError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(TestError)

Contains the error value