Crates.io | redo |
lib.rs | redo |
version | 0.41.1 |
source | src |
created_at | 2017-01-28 22:12:26.615487 |
updated_at | 2021-12-09 15:12:35.94102 |
description | Use the undo crate instead. |
homepage | |
repository | https://github.com/evenorog/redo |
max_upload_size | |
id | 8271 |
size | 88,762 |
Deprecated: Use the undo crate instead.
It is an implementation of the command pattern, where all modifications are done by creating objects of commands that applies the modifications. All commands knows how to undo the changes it applies, and by using the provided data structures it is easy to apply, undo, and redo changes made to a target.
N
most recent changes are stored.no_std
by default.chrono
: Enables time stamps and time travel.serde
: Enables serialization and deserialization.colored
: Enables colored output when visualizing the display structures.use redo::{Command, Record};
struct Add(char);
impl Command for Add {
type Target = String;
type Error = &'static str;
fn apply(&mut self, s: &mut String) -> redo::Result<Add> {
s.push(self.0);
Ok(())
}
fn undo(&mut self, s: &mut String) -> redo::Result<Add> {
self.0 = s.pop().ok_or("s is empty")?;
Ok(())
}
}
fn main() -> redo::Result<Add> {
let mut record = Record::default();
record.apply(Add('a'))?;
record.apply(Add('b'))?;
record.apply(Add('c'))?;
assert_eq!(record.target(), "abc");
record.undo()?;
record.undo()?;
record.undo()?;
assert_eq!(record.target(), "");
record.redo()?;
record.redo()?;
record.redo()?;
assert_eq!(record.target(), "abc");
Ok(())
}
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.