[][src]Struct openapi::v3_0::MediaType

pub struct MediaType {
    pub schema: Option<ObjectOrReference<Schema>>,
    pub examples: Option<MediaTypeExample>,
    pub encoding: Option<BTreeMap<String, Encoding>>,
}

Each Media Type Object provides schema and examples for the media type identified by its key.

See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.1.md#media-type-object.

Fields

schema: Option<ObjectOrReference<Schema>>

The schema defining the type used for the request body.

examples: Option<MediaTypeExample>

Example of the media type.

encoding: Option<BTreeMap<String, Encoding>>

A map between a property name and its encoding information. The key, being the property name, MUST exist in the schema as a property. The encoding object SHALL only apply to requestBody objects when the media type is multipart or application/x-www-form-urlencoded.

Trait Implementations

impl Clone for MediaType[src]

impl Debug for MediaType[src]

impl Default for MediaType[src]

impl<'de> Deserialize<'de> for MediaType[src]

impl PartialEq<MediaType> for MediaType[src]

impl Serialize for MediaType[src]

impl StructuralPartialEq for MediaType[src]

Auto Trait Implementations

impl RefUnwindSafe for MediaType

impl Send for MediaType

impl Sync for MediaType

impl Unpin for MediaType

impl UnwindSafe for MediaType

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.