1 2 3 4 5 6 7 8 9
use crate::{parse::Stmt, selector::Selector}; #[derive(Debug, Clone)] pub(crate) struct UnknownAtRule { pub name: String, pub super_selector: Selector, pub params: String, pub body: Vec<Stmt>, }
1 2 3 4 5 6 7 8 9
use crate::{parse::Stmt, selector::Selector}; #[derive(Debug, Clone)] pub(crate) struct UnknownAtRule { pub name: String, pub super_selector: Selector, pub params: String, pub body: Vec<Stmt>, }