Enum serde_json_core::ser::Error[][src]

pub enum Error {
    BufferFull,
    // some variants omitted
}

This type represents all possible errors that can occur when serializing JSON data

Variants

Buffer is full

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl From<BufferFullError> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

Used when a [Serialize] implementation encounters any error while serializing a type. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error