Docs.rs
finchers-juniper-0.2.1
finchers-juniper 0.2.1
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Repository
crates.io
Source
Owners
ubnt-intrepid
Dependencies
bytes ^0.4.9
normal
failure ^0.1.2
normal
finchers ^0.13
normal
futures ^0.1.24
normal
http ^0.1.10
normal
juniper ^0.10.0
normal
log ^0.4.5
normal
percent-encoding ^1.0.1
normal
serde ^1.0.75
normal
serde_json ^1.0.26
normal
serde_qs ^0.4.1
normal
cargo-husky ^1.0.1
dev
futures-cpupool ^0.1.8
dev
juniper ^0.10.0
dev
matches ^0.1.8
dev
pretty_env_logger ^0.2.4
dev
Versions
100%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Schema
finchers_
juniper
0.2.1
Schema
Implementations on Foreign Types
Arc<S>
Box<S>
Rc<S>
RootNode<'static, QueryT, MutationT>
Implementors
In finchers_
juniper::
execute
finchers_juniper
::
execute
Trait
Schema
Copy item path
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
§