toasty_core/stmt/
with.rs

1use super::Cte;
2
3#[derive(Debug, Clone, PartialEq)]
4pub struct With {
5    pub ctes: Vec<Cte>,
6}
7
8impl From<Vec<Cte>> for With {
9    fn from(ctes: Vec<Cte>) -> Self {
10        Self { ctes }
11    }
12}