summaryrefslogtreecommitdiff
path: root/tor-consdiff/src/cmd.rs
blob: f1bd4499387d7977a6560cf351c5a1989d354149 (plain)
1
2
3
4
5
6
7
8
enum DiffCommand<'a> {
    Delete { low: usize, high: usize },
    DeleteToEnd { low: usize },
    Replace { low: usize, high: usize, block: &'a str },
    Insert { pos: usize, block: &'a str },
    // InsertHere { block: &'a str },
}