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