Trait bluejay_core::executable::InlineFragment

source ·
pub trait InlineFragment {
    type Directives: VariableDirectives;
    type SelectionSet: SelectionSet;

    // Required methods
    fn type_condition(&self) -> Option<&str>;
    fn directives(&self) -> &Self::Directives;
    fn selection_set(&self) -> &Self::SelectionSet;
}

Required Associated Types§

Required Methods§

source

fn type_condition(&self) -> Option<&str>

source

fn directives(&self) -> &Self::Directives

source

fn selection_set(&self) -> &Self::SelectionSet

Implementors§