pub struct XfaAnalysis {
pub has_xfa: bool,
pub field_count: Option<usize>,
pub page_count: Option<usize>,
pub field_types: Vec<String>,
}Expand description
Result of XFA document analysis.
Fields§
§has_xfa: boolWhether the document contains XFA forms
field_count: Option<usize>Number of fields found (if XFA present)
page_count: Option<usize>Number of pages found (if XFA present)
field_types: Vec<String>Field types found
Trait Implementations§
Source§impl Clone for XfaAnalysis
impl Clone for XfaAnalysis
Source§fn clone(&self) -> XfaAnalysis
fn clone(&self) -> XfaAnalysis
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 XfaAnalysis
impl RefUnwindSafe for XfaAnalysis
impl Send for XfaAnalysis
impl Sync for XfaAnalysis
impl Unpin for XfaAnalysis
impl UnwindSafe for XfaAnalysis
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