1 2 3 4 5 6 7 8 9
use crate::ns::*; use serde::{Serialize, Deserialize}; /// Node that allows modification to the directive sequence. #[derive(Debug, Clone, Serialize, Deserialize)] pub struct DirectiveInjectionNode { pub location: Location, pub directives: RefCell<Vec<Rc<Directive>>>, }