pub struct TemplateEngine { /* private fields */ }Expand description
Holds a set of templates
Implementations§
Source§impl TemplateEngine
impl TemplateEngine
pub fn new() -> Self
pub fn with_dialect(dialect: TemplateDialect) -> Self
Sourcepub fn add_template<N, S>(&mut self, name: N, source: S) -> Result<()>
pub fn add_template<N, S>(&mut self, name: N, source: S) -> Result<()>
Add a named template with the specified source.
If name ends with .html then automatical escaping of html entities
will be performed on substitutions.
Sourcepub fn get_template(&self, name: &str) -> Result<Template<'_, '_>>
pub fn get_template(&self, name: &str) -> Result<Template<'_, '_>>
Get a reference to a named template
Sourcepub fn add_global<N, V>(&mut self, name: N, value: V) -> Result<()>
pub fn add_global<N, V>(&mut self, name: N, value: V) -> Result<()>
Define a global value that can be reference by all templates
pub fn render<CTX>(
&self,
name: &str,
source: &str,
context: CTX,
) -> Result<String>where
CTX: Serialize,
Auto Trait Implementations§
impl !Freeze for TemplateEngine
impl !RefUnwindSafe for TemplateEngine
impl Send for TemplateEngine
impl Sync for TemplateEngine
impl Unpin for TemplateEngine
impl !UnwindSafe for TemplateEngine
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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