Crate istring[][src]

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

Structs

Heap
IString
Inline

Enums

InlineOrHeap

Unions

IStringUnion