hrtor 0.3.0

A scalable line editor
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug)]
pub enum CommandStatus {
    Continue(CommandResult),
    Quit,
}

#[derive(Debug)]
pub enum CommandResult {
    Ok,
    NothingToDo,
}