pub enum UseCase {
HighPerformance,
Development,
Production,
Embedded,
Interactive,
Batch,
}Expand description
Use case categories for parser optimization.
Variants§
HighPerformance
High-performance parsing with minimal overhead.
Development
Development environment with rich error messages and debugging.
Production
Production environment with balanced performance and reliability.
Embedded
Embedded systems with strict resource constraints.
Interactive
Interactive environments requiring fast response times.
Batch
Batch processing with large volumes of queries.
Trait Implementations§
impl StructuralPartialEq for UseCase
Auto Trait Implementations§
impl Freeze for UseCase
impl RefUnwindSafe for UseCase
impl Send for UseCase
impl Sync for UseCase
impl Unpin for UseCase
impl UnsafeUnpin for UseCase
impl UnwindSafe for UseCase
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