1 unstable release
0.1.0 | Feb 25, 2021 |
---|
#2492 in Data structures
Used in 4 crates
(2 directly)
11KB
157 lines
Provides a newtype wrapper MaybeString
and its slice counterpart MaybeStr
that represents a byte vector that may be a valid UTF-8 string.
These wrappers are useful when working with data that may be a valid UTF-8 string and you want to delay or conditionally skip its conversion to the string.
They are also useful for debugging data that may be displayed as a string.
The Debug
output will provide string representation when the wrapped byte vector is a valid UTF-8 string.
Usage examples
Debugging byte vectors
use maybe_string::MaybeString;
// invalid UTF-8 bytes
let ms = MaybeString(vec![0, 159, 146, 150]);
assert_eq!(&format!("{:?}", ms), "[00, 9f, 92, 96]");
// valid UTF-8 bytes
let ms = MaybeString(vec![240, 159, 146, 150]);
assert_eq!(&format!("{:?}", ms), "\"💖\"");
Converting to a string
use maybe_string::MaybeString;
// invalid UTF-8 bytes
let ms = MaybeString(vec![0, 159, 146, 150]);
assert_eq!(ms.into_string(), Err(vec![0, 159, 146, 150]));
// valid UTF-8 bytes
let ms = MaybeString(vec![240, 159, 146, 150]);
assert_eq!(ms.into_string(), Ok("💖".to_string()));
Dependencies
~165KB