pub enum MediaType {
    Json,
    Xml,
    UrlEncodedForm,
    Other(String),
}

Variants§

§

Json

Json media types are deserialized and compared

§

Xml

XML media types are normalized and compared

§

UrlEncodedForm

For x-www-form-urlencoded, do some map order comparison shenanigans

§

Other(String)

Other media types are compared literally

Trait Implementations§

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.