Expand description

A replacement for String that allows storing strings of length up to sizeof() - 1 without a heap allocation

That means on 32bit machines: size_of::() == 12 bytes, inline capacity: 11 bytes on 64bit machines: size_of::() == 24 bytes, inline capacity: 23 bytes

Re-exports

pub use crate::istring::IString;
pub use crate::ibytes::IBytes;
pub use crate::small::SmallBytes;
pub use crate::small::SmallString;

Modules

Structs