Enum std::io::CharsErrorUnstable [-] [+] [src]

pub enum CharsError {
    NotUtf8,
    Other(Error),
}

An enumeration of possible errors that can be generated from the Chars adapter.

Variants

NotUtf8

Variant representing that the underlying stream was read successfully but it did not contain valid utf8 data.

Other

Variant representing that an I/O error occurred.

Trait Implementations

impl StdError for CharsError

fn description(&self) -> &str

fn cause(&self) -> Option<&StdError>

impl Display for CharsError

fn fmt(&self, f: &mut Formatter) -> Result

Derived Implementations

impl Debug for CharsError

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for CharsError

fn clone(&self) -> CharsError

fn clone_from(&mut self, source: &Self)

impl PartialEq for CharsError

fn eq(&self, __arg_0: &CharsError) -> bool

fn ne(&self, __arg_0: &CharsError) -> bool