recallable 0.2.0

Traits (`Recallable`, `Recall`, `TryRecall`) and macros for defining Memento pattern types and their state restoration behaviors.
Documentation
1
2
3
4
5
6
7
8
9
10
use recallable::recallable_model;
use serde::Serialize;

#[recallable_model]
#[derive(Serialize)]
struct Foo {
    value: i32,
}

fn main() {}