pub struct SimpleIncrementalParser {
pub reused_nodes: usize,
pub reparsed_nodes: usize,
/* private fields */
}Expand description
Simple incremental parser that reuses unaffected nodes
Fields§
§reused_nodes: usize§reparsed_nodes: usizeImplementations§
Trait Implementations§
Source§impl Default for SimpleIncrementalParser
impl Default for SimpleIncrementalParser
Source§fn default() -> SimpleIncrementalParser
fn default() -> SimpleIncrementalParser
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SimpleIncrementalParser
impl RefUnwindSafe for SimpleIncrementalParser
impl Send for SimpleIncrementalParser
impl Sync for SimpleIncrementalParser
impl Unpin for SimpleIncrementalParser
impl UnsafeUnpin for SimpleIncrementalParser
impl UnwindSafe for SimpleIncrementalParser
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