pub struct TableExtractionConfig {
pub min_rows: usize,
pub min_cols: usize,
pub extract_headers: bool,
pub infer_types: bool,
pub generate_summaries: bool,
pub output_format: TableOutputFormat,
}Expand description
Table extraction configuration
Fields§
§min_rows: usizeMinimum rows for valid table
min_cols: usizeMinimum columns for valid table
extract_headers: boolExtract headers
infer_types: boolInfer data types
generate_summaries: boolGenerate summaries
output_format: TableOutputFormatOutput format
Trait Implementations§
Source§impl Clone for TableExtractionConfig
impl Clone for TableExtractionConfig
Source§fn clone(&self) -> TableExtractionConfig
fn clone(&self) -> TableExtractionConfig
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 TableExtractionConfig
impl Debug for TableExtractionConfig
Auto Trait Implementations§
impl Freeze for TableExtractionConfig
impl RefUnwindSafe for TableExtractionConfig
impl Send for TableExtractionConfig
impl Sync for TableExtractionConfig
impl Unpin for TableExtractionConfig
impl UnwindSafe for TableExtractionConfig
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