pub struct ExternalValidationResult {
pub qpdf_passed: Option<bool>,
pub verapdf_passed: Option<bool>,
pub adobe_preflight_passed: Option<bool>,
pub error_messages: Vec<String>,
}Expand description
Result from external validation tools
Fields§
§qpdf_passed: Option<bool>§verapdf_passed: Option<bool>§adobe_preflight_passed: Option<bool>§error_messages: Vec<String>Trait Implementations§
Source§impl Clone for ExternalValidationResult
impl Clone for ExternalValidationResult
Source§fn clone(&self) -> ExternalValidationResult
fn clone(&self) -> ExternalValidationResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ExternalValidationResult
impl RefUnwindSafe for ExternalValidationResult
impl Send for ExternalValidationResult
impl Sync for ExternalValidationResult
impl Unpin for ExternalValidationResult
impl UnwindSafe for ExternalValidationResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more