pub type CStr16 = SmallString<[u8; 16]>;Expand description
Fixed-size C-style UTF-8 string (max 16 bytes).
Common in Half-Life file headers (e.g. texture names).
Backed by [SmallString<[u8; 16]>], so it’s stack-allocated and
acts like a normal &str.
Aliased Type§
pub struct CStr16 { /* private fields */ }