pub trait FragmentSpread {
type Directives: VariableDirectives;
// Required methods
fn name(&self) -> &str;
fn directives(&self) -> Option<&Self::Directives>;
}pub trait FragmentSpread {
type Directives: VariableDirectives;
// Required methods
fn name(&self) -> &str;
fn directives(&self) -> Option<&Self::Directives>;
}