mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-26 22:56:36 +02: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;
|