1use crate::segment::Segment; 2 3#[derive(Debug)] 4pub enum DirectiveEvaluation<'a> { 5 Segments { segments: Vec<&'a Segment> }, 6 NoDirective, 7}