pub type Result<T> = Result<T>;
Test code that reports errors can just cheat and use eyre
eyre
pub enum Result<T> { Ok(T), Err(Report), }
Contains the success value
Contains the error value