pub struct ReparseResult {
pub changed_ranges: Vec<Range<usize>>,
pub diagnostics: Vec<Diagnostic>,
pub reparsed_bytes: usize,
}Expand description
Incremental parsing implementation and helpers. Result of incremental reparse
Fields§
§changed_ranges: Vec<Range<usize>>§diagnostics: Vec<Diagnostic>§reparsed_bytes: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for ReparseResult
impl !RefUnwindSafe for ReparseResult
impl Send for ReparseResult
impl Sync for ReparseResult
impl Unpin for ReparseResult
impl UnsafeUnpin for ReparseResult
impl UnwindSafe for ReparseResult
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