1 unstable release
0.1.0 | Jan 16, 2020 |
---|
#2457 in Data structures
50 downloads per month
Used in hunt
18KB
425 lines
thin_str
: A rust crate for a single-pointer string
ThinStr
is the slimmer sibling of Box<str>
and String
. It's a single (nonnull) pointer, and stores it's length inline with the data, in the same allocation.
Limitations
Right now the interface is minimally feature-complete, and relies on Deref<Target = str>
for most of it, but patches are welcome to flesh it out more.
In particular, while it isn't immutable, it might as well be, since it cannot currently be resized after construction. This will probably eventually change, but it will likely always be much more like Box<str>
rather than like String
.
Crate features
This crate is currently no_std compatible in all configurations, however it uses extern crate alloc
as you might expect.
serde_support
: Support serializing and deserializingThinStr
usingserde
. Disabled by default.
License
MIT/Apache2
Dependencies
~165KB