Struct skyline_web::Template
source · pub struct Template<'tpl> { /* private fields */ }Expand description
A preprocessed form of the plain text template, ready to be rendered
with data contained in types implementing the Content trait.
Implementations
sourceimpl<'tpl> Template<'tpl>
impl<'tpl> Template<'tpl>
sourcepub fn new<S>(source: S) -> Result<Template<'tpl>, Error>where
S: Into<Cow<'tpl, str, Wide>>,
pub fn new<S>(source: S) -> Result<Template<'tpl>, Error>where
S: Into<Cow<'tpl, str, Wide>>,
Create a new Template out of the source.
- If
sourceis a&str, thisTemplatewill borrow it with appropriate lifetime. - If
sourceis aString, thisTemplatewill take it’s ownership (The'tpllifetime will be'static).
sourcepub fn capacity_hint(&self) -> usize
pub fn capacity_hint(&self) -> usize
Estimate how big of a buffer should be allocated to render this Template.
sourcepub fn render<C>(&self, content: &C) -> Stringwhere
C: Content,
pub fn render<C>(&self, content: &C) -> Stringwhere
C: Content,
Render this Template with a given Content to a String.
sourcepub fn render_to_writer<W, C>(
&self,
writer: &mut W,
content: &C
) -> Result<(), Error>where
W: Write,
C: Content,
pub fn render_to_writer<W, C>(
&self,
writer: &mut W,
content: &C
) -> Result<(), Error>where
W: Write,
C: Content,
Render this Template with a given Content to a writer.
Auto Trait Implementations
impl<'tpl> RefUnwindSafe for Template<'tpl>
impl<'tpl> Send for Template<'tpl>
impl<'tpl> Sync for Template<'tpl>
impl<'tpl> Unpin for Template<'tpl>
impl<'tpl> UnwindSafe for Template<'tpl>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more