8 releases

0.3.0 Dec 2, 2021
0.2.1 Jun 27, 2019
0.2.0 Mar 6, 2019
0.1.3 Jan 10, 2019
0.0.0 Jul 25, 2017

#218 in Data structures

Download history 17991/week @ 2024-03-14 16621/week @ 2024-03-21 14423/week @ 2024-03-28 11373/week @ 2024-04-04 10919/week @ 2024-04-11 11099/week @ 2024-04-18 11427/week @ 2024-04-25 10536/week @ 2024-05-02 9429/week @ 2024-05-09 10178/week @ 2024-05-16 10930/week @ 2024-05-23 12252/week @ 2024-05-30 11697/week @ 2024-06-06 10910/week @ 2024-06-13 10436/week @ 2024-06-20 9189/week @ 2024-06-27

44,546 downloads per month
Used in 1,175 crates (2 directly)

MIT license

12KB
166 lines

String

A UTF-8 encoded string with configurable byte storage.

Build Status License: MIT Crates.io Documentation

Usage

To use string, first add this to your Cargo.toml:

[dependencies]
string = "0.3.0"

Next, add this to your crate:

extern crate string;

use string::{String, TryFrom};

let s: String<[u8; 2]> = String::try_from([b'h', b'i']).unwrap();
assert_eq!(&s[..], "hi");

See documentation for more details.


lib.rs:

A UTF-8 encoded string with configurable byte storage.

This crate provides String, a type similar to its std counterpart, but with one significant difference: the underlying byte storage is configurable. In other words, String<T> is a marker type wrapping T, indicating that it represents a UTF-8 encoded string.

For example, one can represent small strings (stack allocated) by wrapping an array:

let s: String<[u8; 2]> = String::try_from([b'h', b'i']).unwrap();
assert_eq!(&s[..], "hi");

Dependencies

~170KB