pub trait PdfError: Error {
// Required methods
fn code(&self) -> &str;
fn help(&self) -> Option<String>;
// Provided method
fn docs_url(&self) -> String { ... }
}Expand description
The central Error trait for all PDFluent operations.