pub type Result<T> = Result<T, PemError>;
The pem result type.
pem
enum Result<T> { Ok(T), Err(PemError), }
Contains the success value
Contains the error value