Skip to main content

text_document_common/
types.rs

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