pub trait AnyTemplateProperty<'a> {
// Required methods
fn try_into_serialize(self: Box<Self>) -> Option<BoxedSerializeProperty<'a>>;
fn try_into_template(self: Box<Self>) -> Option<Box<dyn Template + 'a>>;
fn try_join(
self: Box<Self>,
separator: Box<dyn Template + 'a>,
) -> Option<Box<dyn Template + 'a>>;
}Expand description
Abstraction trait for a type-erased TemplateProperty