Enum anterofit::serialize::none::NoSerializeError[]

pub enum NoSerializeError {
    Serialize,
    Deserialize,
}

Error returned by NoSerializer and NoDeserializer

Variants

"A request method requested serialization, but no serializer was provided"

"A request method requested deserialization, but no deserializer was provided"

Trait Implementations

impl Debug for NoSerializeError
[src]

Formats the value using the given formatter. Read more

impl Display for NoSerializeError

Formats the value using the given formatter. Read more

impl Error for NoSerializeError

This method is soft-deprecated. Read more

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

impl From<NoSerializeError> for Error

Performs the conversion.

Auto Trait Implementations