Re-exports§
pub use sql_tag_node::SqlTagNode;
pub use include_tag_node::IncludeTagNode;
pub use mapper_tag_node::MapperTagNode;
pub use if_tag_node::IfTagNode;
pub use trim_tag_node::TrimTagNode;
pub use bind_tag_node::BindTagNode;
pub use where_tag_node::WhereTagNode;
pub use choose_tag_node::ChooseTagNode;
pub use when_tag_node::WhenTagNode;
pub use otherwise_tag_node::OtherwiseTagNode;
pub use foreach_tag_node::ForeachTagNode;
pub use set_tag_node::SetTagNode;
pub use continue_tag_node::ContinueTagNode;
pub use break_tag_node::BreakTagNode;
pub use select_tag_node::SelectTagNode;
pub use update_tag_node::UpdateTagNode;
pub use insert_tag_node::InsertTagNode;
pub use delete_tag_node::DeleteTagNode;
Modules§
- bind_
tag_ node - break_
tag_ node - choose_
tag_ node - continue_
tag_ node - delete_
tag_ node - foreach_
tag_ node - if_
tag_ node - include_
tag_ node - insert_
tag_ node - mapper_
tag_ node - otherwise_
tag_ node - select_
tag_ node - set_
tag_ node - sql_
tag_ node - trim_
tag_ node - update_
tag_ node - when_
tag_ node - where_
tag_ node
Structs§
- Node
Context - Context passed around during token generation. FChildParser is a type parameter for the function that parses child elements.
Traits§
- Html
AstNode - Trait for all HTML abstract syntax tree (AST) nodes.
Defines how a node is created from an
Element
and how it generates Rust TokenStream.