pub enum Node {
Text(String),
Value(EchoValue),
For(For),
IF(If),
}Expand description
Describes a Node of template.
Values
Text(String)- Simple text.Value(EchoValue)- Echo value.For(For)- For value.IF(If)- If value.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
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