pub enum Link {
    Ref {
        operation_ref: String,
        parameters: Option<IndexMap<String, String>>,
        description: Option<String>,
        server: Option<Server>,
    },
    Id {
        operation_id: String,
        parameters: Option<IndexMap<String, String>>,
        description: Option<String>,
        server: Option<Server>,
    },
}
Expand description

The Link object represents a possible design-time link for a response.

The presence of a link does not guarantee the caller’s ability to successfully invoke it, rather it provides a known relationship and traversal mechanism between responses and other operations.

Unlike dynamic links (i.e. links provided in the response payload), the OAS linking mechanism does not require link information in the runtime response.

For computing links, and providing instructions to execute them, a runtime expression is used for accessing values in an operation and using them as parameters while invoking the linked operation.

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

Variants

Ref

Fields

operation_ref: String
parameters: Option<IndexMap<String, String>>
description: Option<String>

A description of the link. CommonMark syntax MAY be used for rich text representation.

server: Option<Server>

A server object to be used by the target operation.

A relative or absolute reference to an OAS operation. This field is mutually exclusive of the operationId field, and MUST point to an Operation Object. Relative operationRef values MAY be used to locate an existing Operation Object in the OpenAPI definition.

Id

Fields

operation_id: String
parameters: Option<IndexMap<String, String>>
description: Option<String>

A description of the link. CommonMark syntax MAY be used for rich text representation.

server: Option<Server>

A server object to be used by the target operation.

The name of an existing, resolvable OAS operation, as defined with a unique operationId. This field is mutually exclusive of the operationRef field.

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

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.