pub enum PerformanceProfile {
LowMemory,
FastParsing,
Balanced,
HighThroughput,
}Expand description
Performance profile for parser operations
Variants§
LowMemory
Optimized for low memory usage
FastParsing
Optimized for fast parsing speed
Balanced
Balanced memory usage and parsing speed
HighThroughput
Optimized for high throughput
Trait Implementations§
Source§impl Clone for PerformanceProfile
impl Clone for PerformanceProfile
Source§fn clone(&self) -> PerformanceProfile
fn clone(&self) -> PerformanceProfile
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 PerformanceProfile
impl Debug for PerformanceProfile
Source§impl PartialEq for PerformanceProfile
impl PartialEq for PerformanceProfile
impl StructuralPartialEq for PerformanceProfile
Auto Trait Implementations§
impl Freeze for PerformanceProfile
impl RefUnwindSafe for PerformanceProfile
impl Send for PerformanceProfile
impl Sync for PerformanceProfile
impl Unpin for PerformanceProfile
impl UnsafeUnpin for PerformanceProfile
impl UnwindSafe for PerformanceProfile
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