pub type Result<T> = Result<T, Box<dyn Error>>;
The result type for datatest-stable tests.
datatest-stable
enum Result<T> { Ok(T), Err(Box<dyn Error>), }
Contains the success value
Contains the error value