Function std::str::from_utf8_slice_opt

pub fn from_utf8_slice_opt<'a>(v: &'a [u8]) -> Option<&'a str>

Converts a vector to a string slice without performing any allocations.

Returns None if the slice is not utf-8.