Struct hypers_openapi::ReDoc
source · #[non_exhaustive]pub struct ReDoc {
pub title: Cow<'static, str>,
pub keywords: Option<Cow<'static, str>>,
pub description: Option<Cow<'static, str>>,
pub lib_url: Cow<'static, str>,
pub spec_url: Cow<'static, str>,
}Expand description
Implements [Handler] for serving ReDoc.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.title: Cow<'static, str>The title of the html page. The default title is “Scalar”.
keywords: Option<Cow<'static, str>>The version of the html page.
description: Option<Cow<'static, str>>The description of the html page.
lib_url: Cow<'static, str>The lib url path.
spec_url: Cow<'static, str>The spec url path.
Implementations§
source§impl ReDoc
impl ReDoc
sourcepub fn title(self, title: impl Into<Cow<'static, str>>) -> Self
pub fn title(self, title: impl Into<Cow<'static, str>>) -> Self
Set title of the html page. The default title is “Scalar”.
sourcepub fn keywords(self, keywords: impl Into<Cow<'static, str>>) -> Self
pub fn keywords(self, keywords: impl Into<Cow<'static, str>>) -> Self
Set keywords of the html page.
sourcepub fn description(self, description: impl Into<Cow<'static, str>>) -> Self
pub fn description(self, description: impl Into<Cow<'static, str>>) -> Self
Set description of the html page.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReDoc
impl RefUnwindSafe for ReDoc
impl Send for ReDoc
impl Sync for ReDoc
impl Unpin for ReDoc
impl UnwindSafe for ReDoc
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)