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