Struct oapi::OApiComponents[][src]

pub struct OApiComponents { /* fields omitted */ }

Implementations

impl OApiComponents[src]

A map of reusable links

pub fn schemas(&self) -> &HashMap<String, OperatorSelector<OApiSchema>>[src]

A map of reusable schemas

pub fn responses(&self) -> &HashMap<String, OApiResponse>[src]

A map of reusable responses

pub fn parameters(&self) -> &HashMap<String, OApiParameter>[src]

A map of reusable parameters

pub fn examples(&self) -> &HashMap<String, OApiExampleSelector>[src]

A map of reusable examples

pub fn request_bodies(&self) -> &HashMap<String, OApiRequestBody>[src]

A map of reusable request bodies

pub fn headers(&self) -> &HashMap<String, OApiHeader>[src]

A map of reusable headers

pub fn security_schemes(&self) -> &HashMap<String, OApiSecurityScheme>[src]

A map of reusable security schemes

pub fn callbacks(&self) -> &HashMap<String, OApiCallback>[src]

A map of reusable callbacks

Trait Implementations

impl Clone for OApiComponents[src]

impl Debug for OApiComponents[src]

impl Default for OApiComponents[src]

impl<'de> Deserialize<'de> for OApiComponents where
    OApiComponents: Default
[src]

impl OApiCheckTrait for OApiComponents[src]

impl OApiExtensionExtractor for OApiComponents[src]

impl PartialEq<OApiComponents> for OApiComponents[src]

impl Serialize for OApiComponents[src]

impl Sparsable for OApiComponents[src]

impl StructuralPartialEq for OApiComponents[src]

Auto Trait Implementations

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,