pub type TestResult<T> = Result<T, TestError>;

Aliased Type§

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