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