Struct oapi::OApiPathItem[][src]

pub struct OApiPathItem { /* fields omitted */ }

Implementations

impl OApiPathItem[src]

pub fn summary(&self) -> &Option<String>[src]

A summary of this path item

pub fn description(&self) -> &Option<String>[src]

A description of this path item

pub fn get(&self) -> &Option<OApiOperation>[src]

The GET operation of this path, if any

pub fn put(&self) -> &Option<OApiOperation>[src]

The PUT operation of this path, if any

pub fn post(&self) -> &Option<OApiOperation>[src]

The POST operation of this path, if any

pub fn delete(&self) -> &Option<OApiOperation>[src]

The DELETE operation of this path, if any

pub fn options(&self) -> &Option<OApiOperation>[src]

The OPTIONS operation of this path, if any

pub fn patch(&self) -> &Option<OApiOperation>[src]

The PATCH operation of this path, if any

pub fn head(&self) -> &Option<OApiOperation>[src]

The HEAD operation of this path, if any

pub fn trace(&self) -> &Option<OApiOperation>[src]

The TRACE operation of this path, if any

pub fn servers(&self) -> &Vec<OApiServer>[src]

The servers this applies to

pub fn parameters(&self) -> &Vec<SparseSelector<OApiParameter>>[src]

The parameters to use

Trait Implementations

impl Clone for OApiPathItem[src]

impl Debug for OApiPathItem[src]

impl Default for OApiPathItem[src]

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

impl OApiCheckTrait for OApiPathItem[src]

impl OApiExtensionExtractor for OApiPathItem[src]

impl PartialEq<OApiPathItem> for OApiPathItem[src]

impl Serialize for OApiPathItem[src]

impl Sparsable for OApiPathItem[src]

impl StructuralPartialEq for OApiPathItem[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>,