FromUtf16Error in std::string - Rust (original) (raw)
Struct FromUtf16Error
1.0.0 · Source
pub struct FromUtf16Error(/* private fields */);
Expand description
A possible error value when converting a String
from a UTF-16 byte slice.
This type is the error type for the from_utf16 method on String.
§Examples
// 𝄞mu<invalid>ic
let v = &[0xD834, 0xDD1E, 0x006d, 0x0075,
0xD800, 0x0069, 0x0063];
assert!(String::from_utf16(v).is_err());
👎Deprecated since 1.42.0: use the Display impl or to_string()
Returns the lower-level source of this error, if any. Read more
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
🔬This is a nightly-only experimental API. (error_generic_member_access
#99301)
Provides type-based access to context intended for error reports. Read more