pub type TestResult = Result<(), TestError>;

Aliased Type§

enum TestResult {
    Ok(()),
    Err(TestError),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(TestError)

Contains the error value