pub enum ParserFeature {
Incremental,
ErrorRecovery,
SyntaxHighlighting,
CodeCompletion,
AstTransformation,
CustomOperators,
Streaming,
Parallel,
Caching,
}Expand description
Parser backend features.
Variants§
Incremental
ErrorRecovery
SyntaxHighlighting
CodeCompletion
AstTransformation
CustomOperators
Streaming
Parallel
Caching
Trait Implementations§
Source§impl Clone for ParserFeature
impl Clone for ParserFeature
Source§fn clone(&self) -> ParserFeature
fn clone(&self) -> ParserFeature
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ParserFeature
impl Debug for ParserFeature
Source§impl PartialEq for ParserFeature
impl PartialEq for ParserFeature
Source§fn eq(&self, other: &ParserFeature) -> bool
fn eq(&self, other: &ParserFeature) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParserFeature
Auto Trait Implementations§
impl Freeze for ParserFeature
impl RefUnwindSafe for ParserFeature
impl Send for ParserFeature
impl Sync for ParserFeature
impl Unpin for ParserFeature
impl UnsafeUnpin for ParserFeature
impl UnwindSafe for ParserFeature
Blanket Implementations§
impl<T> Allocation for T
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