pub struct ErrorNode {
pub byte_start: usize,
pub byte_end: usize,
pub start_point: Point,
pub end_point: Point,
}Expand description
Information about an ERROR node in the parse tree.
Fields§
§byte_start: usize§byte_end: usize§start_point: Point§end_point: PointTrait Implementations§
Auto Trait Implementations§
impl Freeze for ErrorNode
impl RefUnwindSafe for ErrorNode
impl Send for ErrorNode
impl Sync for ErrorNode
impl Unpin for ErrorNode
impl UnsafeUnpin for ErrorNode
impl UnwindSafe for ErrorNode
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