pub type CallbackResult<T> = Result<T, ErrorBox>;
pub enum CallbackResult<T> { Ok(T), Err(Box<dyn Error>), }
Contains the success value
Contains the error value