Skip to main content

common/
types.rs

1// Generated by Qleany v1.7.0 from types.tera
2
3pub type Savepoint = u64;
4pub type EntityId = u64;
5
6pub trait HasId {
7    fn id(&self) -> EntityId;
8}