pub struct IncrParseStats {
pub total_edits: u64,
pub partial_reparses: u64,
pub full_reparses: u64,
pub tokens_reused: u64,
pub tokens_relexed: u64,
pub nodes_reused: u64,
pub nodes_rebuilt: u64,
}Expand description
Statistics for an incremental parsing session.
Fields§
§total_edits: u64§partial_reparses: u64§full_reparses: u64§tokens_reused: u64§tokens_relexed: u64§nodes_reused: u64§nodes_rebuilt: u64Implementations§
Trait Implementations§
Source§impl Debug for IncrParseStats
impl Debug for IncrParseStats
Source§impl Default for IncrParseStats
impl Default for IncrParseStats
Source§fn default() -> IncrParseStats
fn default() -> IncrParseStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IncrParseStats
impl RefUnwindSafe for IncrParseStats
impl Send for IncrParseStats
impl Sync for IncrParseStats
impl Unpin for IncrParseStats
impl UnsafeUnpin for IncrParseStats
impl UnwindSafe for IncrParseStats
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