Enum json::decoder::ReadError [] [src]

pub enum ReadError {
    InvalidUtf8,
    Io(Error),
}

Variants

InvalidUtf8Io(Error)

Trait Implementations

impl Debug for ReadError
[src]

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

Formats the value using the given formatter.

impl Display for ReadError
[src]

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

Formats the value using the given formatter.

impl Error for ReadError
[src]

fn description(&self) -> &str

A short description of the error. Read more

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

The lower-level cause of this error, if any. Read more

impl From<CharsError> for ReadError
[src]

fn from(e: CharsError) -> ReadError

Performs the conversion.