Struct openapi::Operation [] [src]

pub struct Operation {
    pub summary: Option<String>,
    pub description: Option<String>,
    pub consumes: Option<Vec<String>>,
    pub produces: Option<Vec<String>>,
    pub schemes: Option<Vec<String>>,
    pub tags: Option<Vec<String>>,
    pub operation_id: Option<String>,
    pub responses: BTreeMap<String, Response>,
    pub parameters: Option<Vec<Parameter>>,
}

Fields

Trait Implementations

impl Debug for Operation
[src]

Formats the value using the given formatter.

impl PartialEq for Operation
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.