Struct rocket_okapi_fork::swagger_ui::SwaggerUIConfig[][src]

pub struct SwaggerUIConfig {
Show 13 fields pub url: String, pub urls: Vec<UrlObject>, pub deep_linking: bool, pub display_operation_id: bool, pub default_models_expand_depth: i32, pub default_model_expand_depth: i32, pub default_model_rendering: DefaultModelRendering, pub display_request_duration: bool, pub doc_expansion: DocExpansion, pub filter: Filter, pub max_displayed_tags: u32, pub show_extensions: bool, pub show_common_extensions: bool,
}
Expand description

A struct containing information about where and how the openapi.json files are served.

Fields

url: String

The url to a single openapi.json file that is showed when the web ui is first opened.

urls: Vec<UrlObject>

A list of named urls that contain all the openapi.json files that you want to display in your web ui. If this field is populated, the url field is not used.

deep_linking: bool

If set to true, enables deep linking for tags and operations. See the Deep Linking documentation for more information. Default: false.

display_operation_id: bool

Controls the display of operationId in operations list. Default: false.

default_models_expand_depth: i32

The default expansion depth for models (set to -1 completely hide the models). Default: 1.

default_model_expand_depth: i32

The default expansion depth for the model on the model-example section. Default: 1.

default_model_rendering: DefaultModelRendering

Controls how the model is shown when the API is first rendered. (The user can always switch the rendering for a given model by clicking the ‘Model’ and ‘Example Value’ links.) Default: DefaultModelRendering::Example.

display_request_duration: bool

Controls the display of the request duration (in milliseconds) for “Try it out” requests. Default: false.

doc_expansion: DocExpansion

Controls the default expansion setting for the operations and tags. Default: DocExpansion::List.

filter: Filter

If set, enables filtering. The top bar will show an edit box that you can use to filter the tagged operations that are shown. Filtering is case sensitive matching the filter expression anywhere inside the tag. Default: Filter(false).

max_displayed_tags: u32

If set, limits the number of tagged operations displayed to at most this many. The default is to show all operations. Default: None (displays all tagged operations).

show_extensions: bool

Controls the display of vendor extension (x-) fields and values for Operations, Parameters, and Schema. Default: false.

show_common_extensions: bool

Controls the display of extensions (pattern, maxLength, minLength, maximum, minimum) fields and values for Parameters. Default: false.

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

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

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Converts self into a collection.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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.