pub struct Reparsed {
pub green: GreenNode,
pub errors: Vec<SyntaxError>,
pub tier: ReparseTier,
}Expand description
A successful incremental reparse: the new whole-file green tree and its errors, both in the new text’s offsets.
Fields§
§green: GreenNode§errors: Vec<SyntaxError>§tier: ReparseTierTrait Implementations§
Auto Trait Implementations§
impl Freeze for Reparsed
impl RefUnwindSafe for Reparsed
impl Send for Reparsed
impl Sync for Reparsed
impl Unpin for Reparsed
impl UnsafeUnpin for Reparsed
impl UnwindSafe for Reparsed
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