[][src]Struct openapi::v3_0::PathItem

pub struct PathItem {
    pub reference: Option<String>,
    pub summary: Option<String>,
    pub description: Option<String>,
    pub get: Option<Operation>,
    pub put: Option<Operation>,
    pub post: Option<Operation>,
    pub delete: Option<Operation>,
    pub options: Option<Operation>,
    pub head: Option<Operation>,
    pub patch: Option<Operation>,
    pub trace: Option<Operation>,
    pub servers: Option<Vec<Server>>,
    pub parameters: Option<Vec<ObjectOrReference<Parameter>>>,
    pub extensions: Extensions,
}

Describes the operations available on a single path.

A Path Item MAY be empty, due to ACL constraints. The path itself is still exposed to the documentation viewer but they will not know which operations and parameters are available.

Fields

reference: Option<String>

Allows for an external definition of this path item. The referenced structure MUST be in the format of a Path Item Object. If there are conflicts between the referenced definition and this Path Item's definition, the behavior is undefined.

summary: Option<String>

An optional, string summary, intended to apply to all operations in this path.

description: Option<String>

An optional, string description, intended to apply to all operations in this path. CommonMark syntax MAY be used for rich text representation.

get: Option<Operation>

A definition of a GET operation on this path.

put: Option<Operation>

A definition of a PUT operation on this path.

post: Option<Operation>

A definition of a POST operation on this path.

delete: Option<Operation>

A definition of a DELETE operation on this path.

options: Option<Operation>

A definition of a OPTIONS operation on this path.

head: Option<Operation>

A definition of a HEAD operation on this path.

patch: Option<Operation>

A definition of a PATCH operation on this path.

trace: Option<Operation>

A definition of a TRACE operation on this path.

servers: Option<Vec<Server>>

An alternative server array to service all operations in this path.

parameters: Option<Vec<ObjectOrReference<Parameter>>>

A list of parameters that are applicable for all the operations described under this path. These parameters can be overridden at the operation level, but cannot be removed there. The list MUST NOT include duplicated parameters. A unique parameter is defined by a combination of a name and location. The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object's components/parameters.

extensions: Extensions

Trait Implementations

impl Clone for PathItem[src]

impl Debug for PathItem[src]

impl Default for PathItem[src]

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

impl PartialEq<PathItem> for PathItem[src]

impl Serialize for PathItem[src]

impl StructuralPartialEq for PathItem[src]

Auto Trait Implementations

impl RefUnwindSafe for PathItem

impl Send for PathItem

impl Sync for PathItem

impl Unpin for PathItem

impl UnwindSafe for PathItem

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.