pub struct HandlebarsRoot {
pub nodes: Vec<TemplateNode>,
}Expand description
Strongly-typed AST root node for Handlebars templates.
Fields§
§nodes: Vec<TemplateNode>Trait Implementations§
Source§impl Clone for HandlebarsRoot
impl Clone for HandlebarsRoot
Source§fn clone(&self) -> HandlebarsRoot
fn clone(&self) -> HandlebarsRoot
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HandlebarsRoot
impl Debug for HandlebarsRoot
Source§impl<'de> Deserialize<'de> for HandlebarsRoot
impl<'de> Deserialize<'de> for HandlebarsRoot
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for HandlebarsRoot
impl PartialEq for HandlebarsRoot
Source§impl Serialize for HandlebarsRoot
impl Serialize for HandlebarsRoot
impl StructuralPartialEq for HandlebarsRoot
Auto Trait Implementations§
impl Freeze for HandlebarsRoot
impl RefUnwindSafe for HandlebarsRoot
impl Send for HandlebarsRoot
impl Sync for HandlebarsRoot
impl Unpin for HandlebarsRoot
impl UnwindSafe for HandlebarsRoot
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