Trait ChangeListener

trait ChangeListener: DeleteListener

Listener to be notified when the line is modified.

Required Methods

fn insert_char(self: &mut Self, idx: usize, c: char)

char inserted at idx index

fn insert_str(self: &mut Self, idx: usize, string: &str)

string inserted at idx index

fn replace(self: &mut Self, idx: usize, old: &str, new: &str)

old text replaced by new text at idx index

Implementors