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