pub struct Operation {
Show 13 fields pub tags: Option<Vec<String>>, pub summary: Option<String>, pub description: Option<String>, pub external_docs: Option<ExternalDoc>, pub operation_id: Option<String>, pub extensions: Option<IndexMap<String, Value>>, pub parameters: Option<Vec<ObjectOrReference<Parameter>>>, pub request_body: Option<ObjectOrReference<RequestBody>>, pub responses: IndexMap<String, Response>, pub callbacks: Option<IndexMap<String, Callback>>, pub deprecated: Option<bool>, pub security: Option<Vec<SecurityRequirement>>, pub servers: Option<Vec<Server>>,
}
Expand description

Fields

tags: Option<Vec<String>>

A list of tags for API documentation control. Tags can be used for logical grouping of operations by resources or any other qualifier.

summary: Option<String>

A short summary of what the operation does.

description: Option<String>

A verbose explanation of the operation behavior. CommonMark syntax MAY be used for rich text representation.

external_docs: Option<ExternalDoc>

Additional external documentation for this operation.

operation_id: Option<String>

Unique string used to identify the operation. The id MUST be unique among all operations described in the API. Tools and libraries MAY use the operationId to uniquely identify an operation, therefore, it is RECOMMENDED to follow common programming naming conventions.

extensions: Option<IndexMap<String, Value>>parameters: Option<Vec<ObjectOrReference<Parameter>>>

A list of parameters that are applicable for this operation. If a parameter is already defined at the Path Item, the new definition will override it but can never remove it. 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.

request_body: Option<ObjectOrReference<RequestBody>>

The request body applicable for this operation. The requestBody is only supported in HTTP methods where the HTTP 1.1 specification RFC7231 has explicitly defined semantics for request bodies. In other cases where the HTTP spec is vague, requestBody SHALL be ignored by consumers.

responses: IndexMap<String, Response>

The list of possible responses as they are returned from executing this operation.

A container for the expected responses of an operation. The container maps a HTTP response code to the expected response.

The documentation is not necessarily expected to cover all possible HTTP response codes because they may not be known in advance. However, documentation is expected to cover a successful operation response and any known errors.

The default MAY be used as a default response object for all HTTP codes that are not covered individually by the specification.

The Responses Object MUST contain at least one response code, and it SHOULD be the response for a successful operation call.

See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.1.md#responsesObject.

callbacks: Option<IndexMap<String, Callback>>

A map of possible out-of band callbacks related to the parent operation. The key is a unique identifier for the Callback Object. Each value in the map is a Callback Object that describes a request that may be initiated by the API provider and the expected responses. The key value used to identify the callback object is an expression, evaluated at runtime, that identifies a URL to use for the callback operation.

deprecated: Option<bool>

Declares this operation to be deprecated. Consumers SHOULD refrain from usage of the declared operation. Default value is false.

security: Option<Vec<SecurityRequirement>>servers: Option<Vec<Server>>

An alternative server array to service this operation. If an alternative server object is specified at the Path Item Object or Root level, it will be overridden by this value.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.