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