collections::str::from_utf8_unchecked

Function collections::str::from_utf8_unchecked

pub unsafe fn from_utf8_unchecked(v: &[u8]) -> &str

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

See the safe version, from_utf8, for more information.

Safety

This function is unsafe because it does not check that the bytes passed to it are valid UTF-8. If this constraint is violated, undefined behavior results, as the rest of Rust assumes that &strs are valid UTF-8.

Examples

Basic usage:

use std::str;

// some bytes, in a vector
let sparkle_heart = vec![240, 159, 146, 150];

let sparkle_heart = unsafe {
    str::from_utf8_unchecked(&sparkle_heart)
};

assert_eq!("????", sparkle_heart);

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/collections/str/fn.from_utf8_unchecked.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部