Enum json::encoder::EncodeError [] [src]

pub enum EncodeError {
    Io(Error),
    InvalidFloat,
    Message(&'static str),
    Other(Box<Error + Send + Sync>),
}

Variants

A float value such as NAN or INFINITY was used.

Generic error message.

Some other error trait impl.

Trait Implementations

impl Debug for EncodeError
[src]

Formats the value using the given formatter.

impl Display for EncodeError
[src]

Formats the value using the given formatter. Read more

impl Error for EncodeError
[src]

A short description of the error. Read more

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

impl From<Error> for EncodeError
[src]

Performs the conversion.