type GenericResult<T> = Result<T, BoxError>;
enum GenericResult<T> { Ok(T), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value