Schema

Trait Schema 

Source
pub trait Schema: SchemaImpl { }
Expand description

Trait representing a GraphQL schema.

Implementations on Foreign Types§

Source§

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

Source§

impl<S: Schema> Schema for Box<S>

Source§

impl<S: Schema> Schema for Rc<S>

Source§

impl<S: Schema> Schema for Arc<S>

Implementors§