[][src]Trait cynic::QueryFragment

pub trait QueryFragment {
    type SelectionSet;
    type Arguments: FragmentArguments;
    fn fragment(arguments: Self::Arguments) -> Self::SelectionSet;
fn graphql_type() -> String; }

Associated Types

Loading content...

Required methods

fn fragment(arguments: Self::Arguments) -> Self::SelectionSet

fn graphql_type() -> String

Loading content...

Implementors

impl<T> QueryFragment for T where
    T: InlineFragments + Send + Sync + 'static, 
[src]

type SelectionSet = SelectionSet<'static, T, T::TypeLock>

type Arguments = <T as InlineFragments>::Arguments

Loading content...