Trait finchers_juniper::execute::Schema[][src]

pub trait Schema: SchemaImpl { }

Trait representing a GraphQL schema.

Implementations on Foreign Types

impl<QueryT, MutationT, CtxT> Schema for RootNode<'static, QueryT, MutationT> where
    QueryT: GraphQLType<Context = CtxT>,
    MutationT: GraphQLType<Context = CtxT>, 
[src]

impl<S: Schema> Schema for Box<S>
[src]

impl<S: Schema> Schema for Rc<S>
[src]

impl<S: Schema> Schema for Arc<S>
[src]

Implementors