rekt_common/libs/types.rs
1// ===================
2// Common used types
3// ===================
4pub type Size = u16;
5pub type Flag = u8;
6// used to normalize the size of the enum used as flag
7pub type TopicId = u64;
8pub type PingId = u8;
9pub type ObjectId = u64; // 0..2 for type identifier (User generated, broker, temporary) 2..64 identifier
10
11
12pub type ClientId = u64;