标签: types rust
我有一个字节数组,我想以std::string::String的形式返回。我发现的其他答案和文档都是将Vectors转换为字符串。
std::string::String
如何将字节数组&[u8]转换为String?
&[u8]
String
答案 0 :(得分:1)
它正在使用std::str::from_utf8:
std::str::from_utf8
std::str::from_utf8(byte_array).unwrap().to_string();
Playground