1use crate::definition::Directives; 2 3pub trait HasDirectives { 4 type Directives: Directives; 5 6 fn directives(&self) -> Option<&Self::Directives>; 7}