pub unsafe fn from_raw_utf8_unchecked(v: Ref<'_, [u8]>) -> Ref<'_, str>
Expand description

Converts a slice of bytes to a string slice without checking that the string contains valid UTF-8.

Safety

The bytes passed in must be valid UTF-8.