<link rel="stylesheet" href="../../noscript1.34.1.css">

1.0.0[][src]Struct alloc::string::FromUtf16Error

pub struct FromUtf16Error(_);

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

Basic usage:

// 𝄞mu<invalid>ic
let v = &[0xD834, 0xDD1E, 0x006d, 0x0075,
          0xD800, 0x0069, 0x0063];

assert!(String::from_utf16(v).is_err());

Trait Implementations

impl Display for FromUtf16Error[src]

impl Debug for FromUtf16Error[src]

Auto Trait Implementations

impl Send for FromUtf16Error

impl Sync for FromUtf16Error

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]