rbatis_codegen/codegen/syntax_tree_pysql/continue_node.rs
use crate::codegen::syntax_tree_pysql::{AsHtml, Name};
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct ContinueNode {}
impl AsHtml for ContinueNode {
    fn as_html(&self) -> String {
        format!("<continue />")
    }
}
impl Name for ContinueNode {
    fn name() -> &'static str {
        "continue"
    }
}