Searched refs:from_raw_bytes (Results 1 – 4 of 4) sorted by relevance
311 fn from_raw_bytes<'a, S>( in from_raw_bytes() function400 fn from_raw_bytes<'a, S>(string: S) -> Result<Cow<'a, Self>>432 expect_encoded!(from_raw_bytes(string)) in assert_from_raw_bytes()436 fn from_raw_bytes<'a, S>(string: S) -> Result<Cow<'a, Self>> in from_raw_bytes() method440 from_raw_bytes(string).map_err(EncodingError) in from_raw_bytes()459 fn from_raw_bytes<'a, S>(string: S) -> Result<Cow<'a, Self>> in from_raw_bytes() method463 OsStr::from_raw_bytes(string).map(cow_os_str_into_path) in from_raw_bytes()
231 pub fn from_raw_bytes(string: &[u8]) -> Result<&Self> {
41 T::from_raw_bytes(string).as_deref().map(AsRef::as_ref),46 let os_string = OsStr::from_raw_bytes(string);
42 if let Ok(os_string) = OsStr::from_raw_bytes(&string) { in test_lossless()