pub trait TinyStrLen<const N: usize> {
type Int: TinyStrInt;
}Expand description
Helper trait to map between length N and the smallest TinyStrInt type that can store it.
See parser::tinystr.
Required Associated Types§
type Int: TinyStrInt
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".