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