#non-empty #string #str #non-zero

non-empty-string

A simple type for non empty Strings, similar to NonZeroUsize and friends

6 releases

0.2.4 Oct 3, 2023
0.2.3 Nov 27, 2022
0.2.2 Sep 18, 2022
0.1.0 Sep 25, 2021

#864 in Parser implementations

Download history 2037/week @ 2023-12-06 1440/week @ 2023-12-13 790/week @ 2023-12-20 860/week @ 2023-12-27 4920/week @ 2024-01-03 2930/week @ 2024-01-10 3163/week @ 2024-01-17 2119/week @ 2024-01-24 1484/week @ 2024-01-31 2042/week @ 2024-02-07 2250/week @ 2024-02-14 3102/week @ 2024-02-21 2534/week @ 2024-02-28 2306/week @ 2024-03-06 2129/week @ 2024-03-13 2466/week @ 2024-03-20

10,205 downloads per month

MIT/Apache

21KB
380 lines

Non Empty String

Crates.io Documentation

A simple wrapper type for Strings that ensures that the string inside is not .empty(), meaning that the length > 0.

Example

use non_empty_string::NonEmptyString;

// Constructing it from a normal (non-zero-length) String works fine.
let s = "A string with a length".to_owned();
assert!(NonEmptyString::new(s).is_ok());

// But constructing it from a zero-length String results in an `Err`, where we get the `String` back that we passed in.
let empty = "".to_owned();
let result = NonEmptyString::new(empty);
assert!(result.is_err());
assert_eq!(result.unwrap_err(), "".to_owned())

Methods of std::string::String

NonEmptyString implements a subset of the functions of std::string::String, only the ones which are guaranteed to leave the NonEmptyString in a valid state. This means i.e. push() is implemented, but pop() is not.

This allows you to mostly treat it as a String without having to constantly turn it into the inner String before you can do any sort of operation on it and then having to reconstruct a NonEmptyString afterwards.

If a method is missing that you think upholds the invariant of NonEmptyString, don't hesitate to open an issue.

Traits

NonEmptyString implements quite a few of the traits that String implements, where it simply forwards it to the underlying string, which allows e.g. indexing with ranges:

use non_empty_string::NonEmptyString;

let non_empty = NonEmptyString::new("ABC".to_owned()).unwrap();
assert_eq!(&non_empty[1..], "BC");

If a trait is missing that you think upholds the invariant of NonEmptyString, don't hesitate to open an issue.

Serde Support

serde support is available behind the serde feature flag:

[dependencies]
serde = { version = "1", features = ["derive"] }
non-empty-string = { version = "*", features = ["serde"]}

Afterwards you can use it in a struct:

use serde::{Serialize, Deserialize};
use non_empty_string::NonEmptyString;

#[derive(Serialize, Deserialize)]
struct MyApiObject {
  username: NonEmptyString,
}

Deserialization will fail if the field is present as a String, but the length of the String is 0.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.5MB
~35K SLoC