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
Trait Implementationsยง
1.0.0 ยท Sourceยงimpl Debug for FromUtf16Error
impl Debug for FromUtf16Error
1.0.0 ยท Sourceยงimpl Display for FromUtf16Error
impl Display for FromUtf16Error
1.0.0 ยท Sourceยงimpl Error for FromUtf16Error
impl Error for FromUtf16Error
Sourceยงfn description(&self) -> &str
fn description(&self) -> &str
๐Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 ยท Sourceยงfn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
Auto Trait Implementationsยง
impl Freeze for FromUtf16Error
impl RefUnwindSafe for FromUtf16Error
impl Send for FromUtf16Error
impl Sync for FromUtf16Error
impl Unpin for FromUtf16Error
impl UnwindSafe for FromUtf16Error
Blanket Implementationsยง
Sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more