pub struct HtmlParserConfig {
pub extract_headers: bool,
pub preserve_formatting: bool,
pub handle_merges: bool,
pub max_cells: usize,
}Expand description
HTML parser configuration
Fields§
§extract_headers: boolExtract table headers
preserve_formatting: boolPreserve cell formatting
handle_merges: boolHandle merged cells
max_cells: usizeMaximum table size
Trait Implementations§
Source§impl Clone for HtmlParserConfig
impl Clone for HtmlParserConfig
Source§fn clone(&self) -> HtmlParserConfig
fn clone(&self) -> HtmlParserConfig
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 HtmlParserConfig
impl Debug for HtmlParserConfig
Auto Trait Implementations§
impl Freeze for HtmlParserConfig
impl RefUnwindSafe for HtmlParserConfig
impl Send for HtmlParserConfig
impl Sync for HtmlParserConfig
impl Unpin for HtmlParserConfig
impl UnwindSafe for HtmlParserConfig
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