qleany-common 1.8.0

Shared entities, database, events, and undo/redo infrastructure for Qleany
Documentation
// Generated by Qleany v1.7.0 from common_entity_table.tera

// ═══════════════════════════════════════════════════════════════════════
// Leaf entity (no forward relationships) — macro implementation
// ═══════════════════════════════════════════════════════════════════════

use super::global_repository::GlobalTable;
use super::global_repository::GlobalTableRO;
use crate::entities::Global;

crate::impl_leaf_entity_table!(
    entity: Global,
    entity_name: "global",
    store_field: globals,
    table_trait: GlobalTable,
    table_ro_trait: GlobalTableRO,
    table_struct: GlobalHashMapTable,
    table_ro_struct: GlobalHashMapTableRO,
    backward_junctions: [

        (jn_global_from_workspace_global),
    ],
);