Files
tuwunel/src/core/matrix/pdu/state_key.rs
2025-04-05 02:44:46 +00:00

9 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;