1
2
3
4
5
6
7
8
use crate::VariableDirectives;

pub trait FragmentSpread {
    type Directives: VariableDirectives;

    fn name(&self) -> &str;
    fn directives(&self) -> &Self::Directives;
}