1// Generated by Qleany v1.4.8 from types.tera
23pub type Savepoint = u64;
4pub type EntityId = u64;
56/// The well-known ID of the single root entity created at database init time.
7pub const ROOT_ENTITY_ID: EntityId = 1;
89pub trait HasId {
10fn id(&self) -> EntityId;
11}