Enum json::decoder::ReadError
[−]
[src]
pub enum ReadError { InvalidUtf8, Io(Error), }
Variants
InvalidUtf8
Io(Error)
Trait Implementations
impl Debug for ReadError
[src]
impl Display for ReadError
[src]
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.