Enum arya::JsonError[][src]

pub enum JsonError {
    Invalid,
    Utf8,
    Exceeded,
}

the error type for arya json errors.

Variants

the input stream is not valid json.

conversion to a string failed because the input stream is not valid a utf8 sequence.

parse failed because the input stream contained an object exceeding the maximum specified depth.

Trait Implementations

impl Debug for JsonError
[src]

Formats the value using the given formatter. Read more

impl Clone for JsonError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for JsonError
[src]

impl PartialEq for JsonError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for JsonError
[src]

Auto Trait Implementations

impl Send for JsonError

impl Sync for JsonError