rbatis_codegen/codegen/syntax_tree_pysql/continue_node.rs
1use crate::codegen::syntax_tree_pysql::{AsHtml, Name};
2
3#[derive(Clone, Debug, Eq, PartialEq)]
4pub struct ContinueNode {}
5
6impl AsHtml for ContinueNode {
7 fn as_html(&self) -> String {
8 format!("<continue />")
9 }
10}
11
12impl Name for ContinueNode {
13 fn name() -> &'static str {
14 "continue"
15 }
16}