pub trait TemplateProperty {
type Output;
// Required method
fn extract(&self) -> Result<Self::Output, TemplatePropertyError>;
}Expand description
Lazily evaluated value which can fail to evaluate.
pub trait TemplateProperty {
type Output;
// Required method
fn extract(&self) -> Result<Self::Output, TemplatePropertyError>;
}Lazily evaluated value which can fail to evaluate.