#[non_exhaustive]pub struct Scalar {
pub title: Cow<'static, str>,
pub keywords: Option<Cow<'static, str>>,
pub description: Option<Cow<'static, str>>,
pub style: Option<Cow<'static, str>>,
pub header: Option<Cow<'static, str>>,
pub lib_url: Cow<'static, str>,
pub spec_url: Cow<'static, str>,
}Expand description
Implements Handler for serving Scalar.
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.
style: Option<Cow<'static, str>>Custom style for the html page.
header: Option<Cow<'static, str>>Custom header for the html page.
lib_url: Cow<'static, str>The lib url path.
spec_url: Cow<'static, str>The spec url path.
Implementations§
Source§impl Scalar
impl Scalar
Sourcepub fn title(self, title: impl Into<Cow<'static, str>>) -> Scalar
pub fn title(self, title: impl Into<Cow<'static, str>>) -> Scalar
Set title of the html page. The default title is “Scalar”.
Sourcepub fn keywords(self, keywords: impl Into<Cow<'static, str>>) -> Scalar
pub fn keywords(self, keywords: impl Into<Cow<'static, str>>) -> Scalar
Set keywords of the html page.
Trait Implementations§
Source§impl Handler for Scalar
impl Handler for Scalar
Source§fn handle<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
_req: &'life1 mut Request,
_depot: &'life2 mut Depot,
res: &'life3 mut Response,
_ctrl: &'life4 mut FlowCtrl,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,
Scalar: 'async_trait,
fn handle<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
_req: &'life1 mut Request,
_depot: &'life2 mut Depot,
res: &'life3 mut Response,
_ctrl: &'life4 mut FlowCtrl,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,
Scalar: 'async_trait,
Handle http request.
Source§fn arc(self) -> ArcHandlerwhere
Self: Sized,
fn arc(self) -> ArcHandlerwhere
Self: Sized,
Wrap to
ArcHandler.Source§fn hoop<H>(self, hoop: H) -> HoopedHandler
fn hoop<H>(self, hoop: H) -> HoopedHandler
Hoop this handler with middleware.
Auto Trait Implementations§
impl Freeze for Scalar
impl RefUnwindSafe for Scalar
impl Send for Scalar
impl Sync for Scalar
impl Unpin for Scalar
impl UnwindSafe for Scalar
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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