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