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