mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2025-12-13 10:49:00 -05:00
8 lines
167 B
Rust
8 lines
167 B
Rust
use smallstr::SmallString;
|
|
|
|
use super::ShortId;
|
|
|
|
pub type StateKey = SmallString<[u8; INLINE_SIZE]>;
|
|
pub type ShortStateKey = ShortId;
|
|
|
|
const INLINE_SIZE: usize = 48;
|