pub struct RenderData<ServerInfo: Clone + Serialize> {
pub index: ContentIndex,
pub server_info: ServerInfo,
pub target_media_type: Option<MediaType>,
pub request: RequestData,
pub error_code: Option<u16>,
}
Expand description
Data passed to handlebars templates and executables.
Fields serialize into kebab-case (e.g. server_info
becomes server-info
).
Fields§
§index: ContentIndex
A hierarchial index of the content. This is serialized with the name
/
(with handlebars escaping this looks like [/].[foo/].bar
).
server_info: ServerInfo
Metadata about the server, such as its version.
target_media_type: Option<MediaType>
The best MediaType
as determined by content negotiation. Rendering
must emit content in this media type.
request: RequestData
Data that comes from requests.
error_code: Option<u16>
An HTTP 4xx
or 5xx
status code
indicating that something went wrong. This will be set while rendering
content for the --error-handler-route
.
Trait Implementations§
Auto Trait Implementations§
impl<ServerInfo> Freeze for RenderData<ServerInfo>where
ServerInfo: Freeze,
impl<ServerInfo> RefUnwindSafe for RenderData<ServerInfo>where
ServerInfo: RefUnwindSafe,
impl<ServerInfo> Send for RenderData<ServerInfo>where
ServerInfo: Send,
impl<ServerInfo> Sync for RenderData<ServerInfo>where
ServerInfo: Sync,
impl<ServerInfo> Unpin for RenderData<ServerInfo>where
ServerInfo: Unpin,
impl<ServerInfo> UnwindSafe for RenderData<ServerInfo>where
ServerInfo: UnwindSafe,
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§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more