Struct hypers_openapi::SwaggerUi

source ·
pub struct SwaggerUi {
    pub config: Config<'static>,
    pub title: Cow<'static, str>,
    pub keywords: Option<Cow<'static, str>>,
    pub description: Option<Cow<'static, str>>,
}
Expand description

Implements [Handler] for serving Swagger UI.

Fields§

§config: Config<'static>§title: Cow<'static, str>

The title of the html page. The default title is “Swagger UI”.

§keywords: Option<Cow<'static, str>>

The keywords of the html page.

§description: Option<Cow<'static, str>>

The description of the html page.

Implementations§

source§

impl SwaggerUi

source

pub fn new(config: impl Into<Config<'static>>) -> Self

Create a new SwaggerUi for given path. Path argument will expose the Swagger UI to the user and should be something that the underlying application framework / library supports.

§Examples
let swagger = SwaggerUi::new("/swagger-ui/{_:.*}");
source

pub fn title(self, title: impl Into<Cow<'static, str>>) -> Self

Set title of the html page. The default title is “Swagger UI”.

source

pub fn keywords(self, keywords: impl Into<Cow<'static, str>>) -> Self

Set keywords of the html page.

source

pub fn description(self, description: impl Into<Cow<'static, str>>) -> Self

Set description of the html page.

source

pub fn url<U: Into<Url<'static>>>(self, url: U) -> Self

Add api doc Url into SwaggerUi. Calling this again will add another url to the Swagger UI.

§Examples
let swagger = SwaggerUi::new("/api-doc/openapi.json")
    .url("/api-docs/openapi2.json");
source

pub fn urls(self, urls: Vec<Url<'static>>) -> Self

Add multiple Urls to Swagger UI. Takes one Vec argument containing tuples of Url and OpenApi. Situations where this comes handy is when there is a need or wish to separate different parts of the api to separate api docs.

§Examples

Expose multiple api docs via Swagger UI.

let swagger = SwaggerUi::new("/swagger-ui/{_:.*}")
    .urls(
      vec![
         (Url::with_primary("api doc 1", "/api-docs/openapi.json", true)),
         (Url::new("api doc 2", "/api-docs/openapi2.json"))
    ]
);
source

pub fn oauth(self, oauth: OauthConfig) -> Self

Add oauth [oauth::Config] into SwaggerUi. Method takes one argument which exposes the [oauth::Config] to the user.

§Examples

Enable pkce with default client_id.

let swagger = SwaggerUi::new("/swagger-ui/{_:.*}")
    .url("/api-docs/openapi.json")
    .oauth(OauthConfig::new()
        .client_id("client-id")
        .scopes(vec![String::from("openid")])
        .use_pkce_with_authorization_code_grant(true)
    );
source

pub fn serve<'a>( path: &str, title: &str, keywords: &str, description: &str, config: &Config<'a>, ) -> Result<Option<SwaggerFile<'a>>, Error>

Trait Implementations§

source§

impl Clone for SwaggerUi

source§

fn clone(&self) -> SwaggerUi

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SwaggerUi

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V