pub type BoxResult<T = ()> = Result<T, BoxError>;
A type alias for a boxed Result which returns some object, T, and uses a BoxError as the error type.
T
enum BoxResult<T = ()> { Ok(T), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value