[−][src]Struct handlebars::template::Template
A handlebars template
Fields
name: Option<String>elements: Vec<TemplateElement>mapping: Option<Vec<TemplateMapping>>Methods
impl Template[src]
pub fn new(mapping: bool) -> Template[src]
pub fn compile<S: AsRef<str>>(source: S) -> Result<Template, TemplateError>[src]
pub fn compile2<S: AsRef<str>>(
source: S,
mapping: bool
) -> Result<Template, TemplateError>[src]
source: S,
mapping: bool
) -> Result<Template, TemplateError>
pub fn compile_with_name<S: AsRef<str>>(
source: S,
name: String,
mapping: bool
) -> Result<Template, TemplateError>[src]
source: S,
name: String,
mapping: bool
) -> Result<Template, TemplateError>
Trait Implementations
impl Renderable for Template[src]
fn render<'reg: 'rc, 'rc>(
&'reg self,
registry: &'reg Registry,
ctx: &'rc Context,
rc: &mut RenderContext<'reg>,
out: &mut dyn Output
) -> Result<(), RenderError>[src]
&'reg self,
registry: &'reg Registry,
ctx: &'rc Context,
rc: &mut RenderContext<'reg>,
out: &mut dyn Output
) -> Result<(), RenderError>
fn renders<'reg: 'rc, 'rc>(
&'reg self,
registry: &'reg Registry,
ctx: &'rc Context,
rc: &mut RenderContext<'reg>
) -> Result<String, RenderError>[src]
&'reg self,
registry: &'reg Registry,
ctx: &'rc Context,
rc: &mut RenderContext<'reg>
) -> Result<String, RenderError>
impl Evaluable for Template[src]
fn eval<'reg: 'rc, 'rc>(
&'reg self,
registry: &'reg Registry,
ctx: &'rc Context,
rc: &mut RenderContext<'reg>
) -> Result<(), RenderError>[src]
&'reg self,
registry: &'reg Registry,
ctx: &'rc Context,
rc: &mut RenderContext<'reg>
) -> Result<(), RenderError>
impl Clone for Template[src]
impl PartialEq<Template> for Template[src]
impl Debug for Template[src]
impl StructuralPartialEq for Template[src]
Auto Trait Implementations
impl Send for Template
impl Sync for Template
impl Unpin for Template
impl UnwindSafe for Template
impl RefUnwindSafe for Template
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,