rpstate 0.1.0

Type-safe reactive persistence for Rust GUI apps...
Documentation
1
2
3
4
5
6
7
8
use crate::MigrationContext;

pub trait MigrateFrom<TOld>: Sized {
    const RENAMES: &'static [(&'static str, &'static str)] = &[];
    const CONVERTS: &'static [(&'static str, u64, u64)] = &[];

    fn migrate(old: TOld, ctx: &mut MigrationContext) -> crate::Result<Self>;
}