Home
last modified time | relevance | path

Searched defs:FromUtf8Error (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/rust/library/alloc/src/
Dstring.rs405 pub struct FromUtf8Error { struct
406 bytes: Vec<u8>,
407 error: Utf8Error,
570 pub fn from_utf8(vec: Vec<u8>) -> Result<String, FromUtf8Error> { in from_utf8() argument
1884 impl FromUtf8Error { implementation
1960 impl fmt::Display for FromUtf8Error { implementation
1974 impl Error for FromUtf8Error { implementation
/third_party/rust/rust/compiler/rustc_codegen_llvm/src/llvm/
Dmod.rs274 pub fn build_string(f: impl FnOnce(&RustString)) -> Result<String, FromUtf8Error> { in build_string() argument
/third_party/rust/crates/memchr/bench/data/code/
Drust-library.rs17836 impl FromUtf8Error { impl