pub struct ExtractionOptions {
pub extract_metadata: bool,
pub strip_metadata: bool,
pub ocr: bool,
}Expand description
Options controlling extraction behavior.
Fields§
§extract_metadata: boolExtract and report document metadata.
strip_metadata: boolRemove metadata from the output document (creates a sanitized copy).
ocr: boolAttempt OCR on image-based pages (requires OCR backend).
Trait Implementations§
Source§impl Clone for ExtractionOptions
impl Clone for ExtractionOptions
Source§fn clone(&self) -> ExtractionOptions
fn clone(&self) -> ExtractionOptions
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 moreSource§impl Debug for ExtractionOptions
impl Debug for ExtractionOptions
Source§impl Default for ExtractionOptions
impl Default for ExtractionOptions
Source§fn default() -> ExtractionOptions
fn default() -> ExtractionOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExtractionOptions
impl RefUnwindSafe for ExtractionOptions
impl Send for ExtractionOptions
impl Sync for ExtractionOptions
impl Unpin for ExtractionOptions
impl UnsafeUnpin for ExtractionOptions
impl UnwindSafe for ExtractionOptions
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