Trait bluejay_core::executable::Selection

source ·
pub trait Selection: Sized {
    type Field: Field;
    type FragmentSpread: FragmentSpread<Directives = <Self::Field as Field>::Directives>;
    type InlineFragment: InlineFragment<Directives = <Self::Field as Field>::Directives>;

    // Required method
    fn as_ref(&self) -> SelectionReference<'_, Self>;
}

Required Associated Types§

Required Methods§

source

fn as_ref(&self) -> SelectionReference<'_, Self>

Object Safety§

This trait is not object safe.

Implementors§