pub struct TextExtractionConfig {
pub preserve_formatting: bool,
pub extract_footnotes: bool,
pub extract_headers_footers: bool,
pub min_block_size: usize,
}Expand description
Text extraction configuration
Fields§
§preserve_formatting: boolPreserve formatting
extract_footnotes: boolExtract footnotes
Extract headers/footers
min_block_size: usizeMinimum text block size
Trait Implementations§
Source§impl Clone for TextExtractionConfig
impl Clone for TextExtractionConfig
Source§fn clone(&self) -> TextExtractionConfig
fn clone(&self) -> TextExtractionConfig
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 TextExtractionConfig
impl Debug for TextExtractionConfig
Auto Trait Implementations§
impl Freeze for TextExtractionConfig
impl RefUnwindSafe for TextExtractionConfig
impl Send for TextExtractionConfig
impl Sync for TextExtractionConfig
impl Unpin for TextExtractionConfig
impl UnwindSafe for TextExtractionConfig
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