pub trait ValidatorPlugin: AstPlugin {
// Required methods
fn validate_document(&self, document: &PdfDocument) -> ValidationReport;
fn get_constraints(&self) -> Vec<Box<dyn SchemaConstraint>>;
}Expand description
Validator plugin
pub trait ValidatorPlugin: AstPlugin {
// Required methods
fn validate_document(&self, document: &PdfDocument) -> ValidationReport;
fn get_constraints(&self) -> Vec<Box<dyn SchemaConstraint>>;
}Validator plugin