Docs.rs
async-graphql-6.0.3
async-graphql 6.0.3
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
sunli829
Dependencies
async-graphql-derive ^6.0.3
normal
async-graphql-parser ^6.0.3
normal
async-graphql-value ^6.0.3
normal
async-stream ^0.3.0
normal
async-trait ^0.1.51
normal
base64 ^0.13.0
normal
bigdecimal ^0.3.0
normal
blocking ^1.0.2
normal
bson ^2.4.0
normal
bytes ^1.0.1
normal
chrono ^0.4.19
normal
chrono-tz ^0.6.1
normal
fast_chemail ^0.9.6
normal
fnv ^1.0.7
normal
futures-channel ^0.3.13
normal
futures-timer ^3.0.2
normal
futures-util ^0.3.0
normal
handlebars ^4.3.6
normal
hashbrown ^0.12.0
normal
http ^0.2.3
normal
indexmap ^2
normal
iso8601 ^0.6.0
normal
log ^0.4.16
normal
lru ^0.7.1
normal
mime ^0.3.15
normal
multer ^2.0.0
normal
num-traits ^0.2.14
normal
once_cell ^1.7.2
normal
opentelemetry ^0.19.0
normal
pin-project-lite ^0.2.6
normal
regex ^1.5.5
normal
rust_decimal ^1.14.3
normal
secrecy ^0.8.0
normal
serde ^1.0.125
normal
serde_cbor ^0.11.1
normal
serde_json ^1.0.64
normal
serde_urlencoded ^0.7.0
normal
sha2 ^0.10.2
normal
smol_str ^0.1.21
normal
static_assertions ^1.1.0
normal
tempfile ^3.2.0
normal
thiserror ^1.0.24
normal
time ^0.3.5
normal
tokio ^1.17.0
normal
tracing-futures ^0.2.5
normal
tracing ^0.1.35
normal
url ^2.2.1
normal
uuid ^1.0.0
normal
uuid ^0.8
normal
zxcvbn ^2.1.2
normal
futures-channel ^0.3.13
dev
tokio ^1.4.0
dev
Versions
100%
of the crate is documented
Go to latest version
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
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
☰
ObjectType
Implementations on Foreign Types
&T
Arc<T>
Box<T>
Implementors
In async_graphql
?
Trait
async_graphql
::
ObjectType
source
·
[
−
]
pub trait ObjectType:
ContainerType
{ }
Expand description
A GraphQL object.
Implementations on Foreign Types
§
source
§
impl<T:
ObjectType
+ ?
Sized
>
ObjectType
for
Box
<T>
source
§
impl<T:
ObjectType
+ ?
Sized
>
ObjectType
for
&T
source
§
impl<T:
ObjectType
+ ?
Sized
>
ObjectType
for
Arc
<T>
Implementors
§
source
§
impl
ObjectType
for
EmptyFields
source
§
impl
ObjectType
for
PageInfo
source
§
impl
ObjectType
for
EmptyMutation
source
§
impl<Cursor, Node, ConnectionFields, EdgeFields, Name, EdgeName>
ObjectType
for
Connection
<Cursor, Node, ConnectionFields, EdgeFields, Name, EdgeName,
DisableNodesField
>
where Cursor:
CursorType
+
Send
+
Sync
, Node:
OutputType
, ConnectionFields:
ObjectType
, EdgeFields:
ObjectType
, Name:
ConnectionNameType
, EdgeName:
EdgeNameType
,
source
§
impl<Cursor, Node, ConnectionFields, EdgeFields, Name, EdgeName>
ObjectType
for
Connection
<Cursor, Node, ConnectionFields, EdgeFields, Name, EdgeName,
EnableNodesField
>
where Cursor:
CursorType
+
Send
+
Sync
, Node:
OutputType
, ConnectionFields:
ObjectType
, EdgeFields:
ObjectType
, Name:
ConnectionNameType
, EdgeName:
EdgeNameType
,
source
§
impl<Cursor, Node, EdgeFields, Name>
ObjectType
for
Edge
<Cursor, Node, EdgeFields, Name>
where Cursor:
CursorType
+
Send
+
Sync
, Node:
OutputType
, EdgeFields:
ObjectType
, Name:
EdgeNameType
,