pub type TestResult = Result<()>;

Aliased Type§

enum TestResult {
    Ok(()),
    Err(Box<dyn Error + Send + Sync>),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Box<dyn Error + Send + Sync>)

Contains the error value