pub type Result<T> = Result<T, OomError>;
A result holding an Error.
pub enum Result<T> { Ok(T), Err(OomError), }
Contains the success value
Contains the error value