1 2 3 4 5 6 7 8 9 10 11 12 13
use crate::py_sql::{Name, NodeType}; #[derive(Clone, Debug)] pub struct PrintNode { pub value: String, pub format: String, } impl Name for PrintNode { fn name() -> &'static str { "println" } }