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