struct_db 0.4.6

Drop-in embedded database
Documentation
1
2
3
4
5
6
7
/// Schema of the Item. Returned by the [`<your_item>::struct_db_schema()`](crate::SDBItem::struct_db_schema) method.
#[derive(Debug)]
pub struct Schema {
    pub table_name: &'static str,
    pub primary_key: &'static str,
    pub secondary_tables_name: std::collections::HashSet<&'static str>,
}