pub type BoxResult<T = ()> = Result<T, BoxError>;
Type alias for the standard result used
pub enum BoxResult<T = ()> { Ok(T), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value