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