[][src]Struct oas3::MediaType

pub struct MediaType {
    pub schema: Option<ObjectOrReference<Schema>>,
    pub examples: Option<MediaTypeExamples>,
    pub encoding: 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<MediaTypeExamples>

Example of the media type.

encoding: 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.

Methods

impl MediaType[src]

pub fn get_schema(&self, spec: &Spec) -> Option<Schema>[src]

pub fn get_examples(&self, spec: &Spec) -> BTreeMap<String, Example>[src]

Trait Implementations

impl Clone for MediaType[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for MediaType[src]

impl PartialEq<MediaType> for MediaType[src]

impl Debug for MediaType[src]

impl Serialize for MediaType[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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.

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

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

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

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