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