pub type TestResult<T> = Result<T, Box<dyn Error>>;Expand description
Type alias for test results Convenience alias for handling test errors throughout the library.
§Examples
use deboa::TestResult;
fn example() -> TestResult<String> {
Ok("success".to_string())
}Aliased Type§
pub enum TestResult<T> {
Ok(T),
Err(Box<dyn Error>),
}