pub struct ExtractionConfig {
pub auto_detect_tables: bool,
pub auto_detect_forms: bool,
pub auto_detect_dropdowns: bool,
pub auto_detect_pagination: bool,
pub auto_detect_downloads: bool,
pub auto_extract_emails: bool,
pub auto_extract_phones: bool,
pub auto_extract_addresses: bool,
pub auto_follow_pagination: bool,
pub max_pagination_pages: u32,
}
Fields§
§auto_detect_tables: bool
§auto_detect_forms: bool
§auto_detect_dropdowns: bool
§auto_detect_pagination: bool
§auto_detect_downloads: bool
§auto_extract_emails: bool
§auto_extract_phones: bool
§auto_extract_addresses: bool
§auto_follow_pagination: bool
§max_pagination_pages: u32
Trait Implementations§
Source§impl Clone for ExtractionConfig
impl Clone for ExtractionConfig
Source§fn clone(&self) -> ExtractionConfig
fn clone(&self) -> ExtractionConfig
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 ExtractionConfig
impl Debug for ExtractionConfig
Source§impl Default for ExtractionConfig
impl Default for ExtractionConfig
Source§impl<'de> Deserialize<'de> for ExtractionConfig
impl<'de> Deserialize<'de> for ExtractionConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExtractionConfig
impl RefUnwindSafe for ExtractionConfig
impl Send for ExtractionConfig
impl Sync for ExtractionConfig
impl Unpin for ExtractionConfig
impl UnwindSafe for ExtractionConfig
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