pub type BlsResult<T> = Result<T, BlsError>;
pub enum BlsResult<T> { Ok(T), Err(BlsError), }
Contains the success value
Contains the error value