Small fixed-size string type that can only be a given length, no more or less, exactly N
bytes.
no_std
compatible.
use fixed_str::FixedStr;
static TEST: FixedStr<4> = FixedStr::new("TEST");
serde
: Enables serialization and deserialization support viaserde
.rkyv
: Enables serialization and deserialization support viarkyv
.schemars
: JSON schema generation support viaschemars
.