pub type Stringlet<const SIZE: usize = 16> = StringletBase<Fixed, SIZE, 0>;Expand description
Fixed length kind of stringlet, i.e. bounds for array access are compiled in, hence it is fast.
This is also produced by stringlet!(…) without a kind specifier.
Aliased Type§
pub struct Stringlet<const SIZE: usize = 16> { /* private fields */ }