Library for strings of fixed maximum lengths that can be copied and
stack-allocated. Certain provided
types such as zstr<8>
and str8
are smaller in size than a &str on
typical systems.
Starting in Version 0.4.0, this crate supports #![no_std]
, although
this feature is not enabled by default. Giving cargo the
--no-default-features
option will enable no_std
and provide only the
zstr and tstr types with some reduced functionality.
Recent enhancements include additional, optional string types.
```
let a:str8 = str8::from("abcdef"); //a str8 can hold up to 7 bytes
let a2 = a; // copied, not moved
let ab = a.substr(1,5); // copies substring to new string
asserteq!(ab, "bcde"); // compare for equality with &str, derefs to &str
assert!(a
let mut u = str8::from("aλb"); //unicode support
assert
let c1 = str8::from("abcd"); // string concatenation with + for strN types
let c2 = str8::from("xyz");
let mut c3 = c1 + c2 + "123";
asserteq!(c3,"abcdxyz123");
asserteq!(c3.capacity(),15); // type of c3 is resized to str16
c3 = "00" + c3; // concat &str left or right
assert_eq!(c3,"00abcdxyz123");
let c4 = strformat!(str16,"abc {}{}{}",1,2,3); // impls core::fmt::Write asserteq!(c4,"abc 123"); //strformat! truncates if capacity exceeded let c5 = tryformat!(str8,"abcdef{}","ghijklmn"); assert!(c5.isnone()); // tryformat! returns None if capacity exceeded ```
Consult the documentation for details.