Enum liner::Action
[−]
[src]
pub enum Action {
Insert {
start: usize,
text: Vec<char>,
},
Remove {
start: usize,
text: Vec<char>,
},
StartGroup,
EndGroup,
}A modification performed on a Buffer. These are used for the purpose of undo/redo.
Variants
InsertFields of Insert
start: usize | |
text: Vec<char> |
RemoveFields of Remove
start: usize | |
text: Vec<char> |
StartGroupEndGroup