[−][src]Struct rocket_okapi::swagger_ui::SwaggerUIConfig
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)
.
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
impl Clone for SwaggerUIConfig
[src]
fn clone(&self) -> SwaggerUIConfig
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for SwaggerUIConfig
[src]
impl Default for SwaggerUIConfig
[src]
impl<'de> Deserialize<'de> for SwaggerUIConfig
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl Serialize for SwaggerUIConfig
[src]
Auto Trait Implementations
impl RefUnwindSafe for SwaggerUIConfig
impl Send for SwaggerUIConfig
impl Sync for SwaggerUIConfig
impl Unpin for SwaggerUIConfig
impl UnwindSafe for SwaggerUIConfig
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T, I> AsResult<T, I> for T where
I: Input,
I: Input,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> DynClone for T where
T: Clone,
[src]
T: Clone,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoCollection<T> for T
fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
A: Array<Item = T>,
fn mapped<U, F, A>(self, f: F) -> SmallVec<A> where
A: Array<Item = U>,
F: FnMut(T) -> U,
A: Array<Item = U>,
F: FnMut(T) -> U,
impl<T> IntoSql for T
fn into_sql<T>(self) -> Self::Expression where
Self: AsExpression<T>,
Self: AsExpression<T>,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
&'a Self: AsExpression<T>,
&'a Self: AsExpression<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Typeable for T where
T: Any,
T: Any,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,