Struct tree_sitter::InputEdit
source · pub struct InputEdit {
pub start_byte: usize,
pub old_end_byte: usize,
pub new_end_byte: usize,
pub start_position: Point,
pub old_end_position: Point,
pub new_end_position: Point,
}Expand description
A summary of a change to a text document.
Fields§
§start_byte: usize§old_end_byte: usize§new_end_byte: usize§start_position: Point§old_end_position: Point§new_end_position: PointImplementations§
source§impl InputEdit
impl InputEdit
sourcepub fn edit_point(&self, point: &mut Point, byte: &mut usize)
pub fn edit_point(&self, point: &mut Point, byte: &mut usize)
Edit a point to keep it in-sync with source code that has been edited.
This function updates a single point’s byte offset and row/column position based on this edit operation. This is useful for editing points without requiring a tree or node instance.
sourcepub fn edit_range(&self, range: &mut Range)
pub fn edit_range(&self, range: &mut Range)
Edit a range to keep it in-sync with source code that has been edited.
This function updates a range’s start and end positions based on this edit operation. This is useful for editing ranges without requiring a tree or node instance.
Trait Implementations§
source§impl From<&InputEdit> for TSInputEdit
impl From<&InputEdit> for TSInputEdit
source§impl PartialEq for InputEdit
impl PartialEq for InputEdit
impl Copy for InputEdit
impl Eq for InputEdit
impl StructuralPartialEq for InputEdit
Auto Trait Implementations§
impl RefUnwindSafe for InputEdit
impl Send for InputEdit
impl Sync for InputEdit
impl Unpin for InputEdit
impl UnwindSafe for InputEdit
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