pub struct ParserConfig {
pub collect_metadata: bool,
pub enable_error_recovery: bool,
pub execution_strategy: Option<ExecutionStrategy>,
pub custom_options: RapidMap<String, String>,
}Expand description
Parser configuration for specific use cases
Fields§
§collect_metadata: boolWhether to collect metadata during parsing
enable_error_recovery: boolWhether to enable error recovery
execution_strategy: Option<ExecutionStrategy>Preferred execution strategy
custom_options: RapidMap<String, String>Custom configuration options
Trait Implementations§
Source§impl Clone for ParserConfig
impl Clone for ParserConfig
Source§fn clone(&self) -> ParserConfig
fn clone(&self) -> ParserConfig
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 ParserConfig
impl Debug for ParserConfig
Auto Trait Implementations§
impl Freeze for ParserConfig
impl RefUnwindSafe for ParserConfig
impl Send for ParserConfig
impl Sync for ParserConfig
impl Unpin for ParserConfig
impl UnsafeUnpin for ParserConfig
impl UnwindSafe for ParserConfig
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