pub type AllocResult = Result<Alloc, AllocError>;
pub enum AllocResult { Ok(Alloc), Err(AllocError), }
Contains the success value
Contains the error value