pub struct TEMPLATES {
__private_field: (),
}
Fields
__private_field: ()
Methods from Deref<Target = Tera>
sourcepub fn check_macro_files(&self) -> Result<(), Error>
pub fn check_macro_files(&self) -> Result<(), Error>
We keep track of macro files loaded in each Template so we can know whether one or them is missing and error accordingly before the user tries to render a template.
As with self::build_inheritance_chains
, you don’t usually need to call that yourself.
sourcepub fn render(
&self,
template_name: &str,
context: &Context
) -> Result<String, Error>
pub fn render(
&self,
template_name: &str,
context: &Context
) -> Result<String, Error>
Renders a Tera template given a tera::Context
,
To render a template with an empty context, simply pass a new tera::Context
object
// Rendering a template with a normal context
let mut context = Context::new();
context.insert("age", 18);
tera.render("hello.html", context);
// Rendering a template with an empty context
let output = tera.render("hello.html", Context::new());
sourcepub fn render_to(
&self,
template_name: &str,
context: &Context,
write: impl Write
) -> Result<(), Error>
pub fn render_to(
&self,
template_name: &str,
context: &Context,
write: impl Write
) -> Result<(), Error>
Renders a Tera template given a tera::Context
to a std::io::Write,
The only difference from Self::render is that this version doesn’t convert buffer to a String, allowing to render directly to anything that implements std::io::Write.
Any i/o error will be reported in the result.
// Rendering a template to an internal buffer
let mut buffer = Vec::new();
let mut context = Context::new();
context.insert("age", 18);
tera.render_to("hello.html", context, &mut buffer);
sourcepub fn get_template_names(&self) -> impl Iterator<Item = &str>
pub fn get_template_names(&self) -> impl Iterator<Item = &str>
Returns an iterator over the names of all registered templates in an unspecified order.
Example
use tera::Tera;
let mut tera = Tera::default();
tera.add_raw_template("foo", "{{ hello }}");
tera.add_raw_template("another-one.html", "contents go here");
let names: Vec<_> = tera.get_template_names().collect();
assert_eq!(names.len(), 2);
assert!(names.contains(&"foo"));
assert!(names.contains(&"another-one.html"));
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TEMPLATES
impl Send for TEMPLATES
impl Sync for TEMPLATES
impl Unpin for TEMPLATES
impl UnwindSafe for TEMPLATES
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