pub struct BatchParser { /* private fields */ }Expand description
Efficient batch parser with an internal token cache and optional volatility classifier.
The cache is keyed by the original formula string; repeated formulas across a batch (very common in spreadsheets) will avoid re-tokenization and whitespace filtering.
Implementations§
Source§impl BatchParser
impl BatchParser
pub fn builder() -> BatchParserBuilder
Auto Trait Implementations§
impl Freeze for BatchParser
impl !RefUnwindSafe for BatchParser
impl Send for BatchParser
impl Sync for BatchParser
impl Unpin for BatchParser
impl !UnwindSafe for BatchParser
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