Function tetcore_std::str::from_boxed_utf8_unchecked1.20.0[][src]

pub unsafe fn from_boxed_utf8_unchecked(
    v: Box<[u8], Global>
) -> Box<str, Global>

Notable traits for Box<R, Global>

impl<R> Read for Box<R, Global> where
    R: Read + ?Sized
impl<W> Write for Box<W, Global> where
    W: Write + ?Sized
impl<F, A> Future for Box<F, A> where
    A: Allocator + 'static,
    F: Future + Unpin + ?Sized
type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
    A: Allocator,
    I: Iterator + ?Sized
type Item = <I as Iterator>::Item;
Expand description

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

Examples

Basic usage:

let smile_utf8 = Box::new([226, 152, 186]);
let smile = unsafe { std::str::from_boxed_utf8_unchecked(smile_utf8) };

assert_eq!("☺", &*smile);