18 releases

0.2.13 Feb 24, 2025
0.2.12 Oct 13, 2024
0.2.11 Aug 17, 2024
0.2.10 Nov 20, 2023
0.1.1 Nov 23, 2022

#217 in Parser implementations

Download history 1765/week @ 2024-11-30 2072/week @ 2024-12-07 1835/week @ 2024-12-14 794/week @ 2024-12-21 653/week @ 2024-12-28 1302/week @ 2025-01-04 1267/week @ 2025-01-11 1682/week @ 2025-01-18 1173/week @ 2025-01-25 2495/week @ 2025-02-01 1366/week @ 2025-02-08 1984/week @ 2025-02-15 2031/week @ 2025-02-22 1733/week @ 2025-03-01 1934/week @ 2025-03-08 1736/week @ 2025-03-15

7,807 downloads per month
Used in 14 crates (5 directly)

Apache-2.0

41KB
624 lines

FStr: a stack-allocated fixed-length string type

Crates.io License

This crate provides a new type wrapping [u8; N] to handle a stack-allocated byte array as a fixed-length, String-like owned type through common traits including Display, PartialEq, and Deref<Target = str>.

use fstr::FStr;

let x = FStr::try_from(b"foo")?;
println!("{}", x); // "foo"
assert_eq!(x, "foo");
assert_eq!(&x[..], "foo");
assert_eq!(&x as &str, "foo");
assert!(!x.is_empty());
assert!(x.is_ascii());

let mut y = FStr::try_from(b"bar")?;
assert_eq!(y, "bar");
y.make_ascii_uppercase();
assert_eq!(y, "BAR");

const K: FStr<8> = FStr::from_str_unwrap("constant");
assert_eq!(K, "constant");

Unlike String and arrayvec::ArrayString, which keep track of the length of the stored string, this type has the same binary representation as the underlying [u8; N] and, therefore, can only manage fixed-length strings. The type parameter N specifies the exact length (in bytes) of a concrete type, and each concrete type holds only string values of that size.

let s = "Lorem Ipsum ✨";
assert_eq!(s.len(), 15);
assert!(s.parse::<FStr<15>>().is_ok()); // just right
assert!(s.parse::<FStr<10>>().is_err()); // too small
assert!(s.parse::<FStr<20>>().is_err()); // too large
let x: FStr<10> = FStr::from_str_unwrap("helloworld");
let y: FStr<12> = FStr::from_str_unwrap("helloworld  ");

// This code does not compile because `FStr` of different lengths cannot mix.
if x != y {
    unreachable!();
}

Variable-length string operations are partially supported by utilizing a C-style NUL-terminated buffer and some helper methods.

let mut buffer = FStr::<24>::from_fmt(format_args!("&#x{:x};", b'@'), b'\0')?;
assert_eq!(buffer, "&#x40;\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");

let c_str = buffer.slice_to_terminator('\0');
assert_eq!(c_str, "&#x40;");

use core::fmt::Write as _;
write!(buffer.writer_at(c_str.len()), " COMMERCIAL AT")?;
assert_eq!(buffer.slice_to_terminator('\0'), "&#x40; COMMERCIAL AT");

Crate features

  • std (optional; enabled by default) enables the integration with std. Disable default features to operate this crate under no_std environments.
  • serde (optional) enables the serialization and deserialization of FStrthrough serde.

License

Licensed under the Apache License, Version 2.0.

See also

Dependencies

~155KB