amethystate 0.9.3

Type-safe reactive persistence for Rust GUI apps
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::migration::fields::FieldDescriptor;

pub struct SchemaEntry {
    pub prefix: Option<&'static str>,
    pub struct_name: &'static str,
    pub version: u32,
    pub schema_hash: u32,
    pub fields: &'static [FieldDescriptor],
}

inventory::collect!(SchemaEntry);