Update lib.rs

This commit is contained in:
sunli 2020-05-02 10:46:02 +08:00
parent 1df09fcf77
commit 9e48ca5083

View File

@ -48,6 +48,7 @@
//! //!
//! * Actix-web [async-graphql-actix_web](https://crates.io/crates/async-graphql-actix-web) //! * Actix-web [async-graphql-actix_web](https://crates.io/crates/async-graphql-actix-web)
//! * Warp [async-graphql-warp](https://crates.io/crates/async-graphql-warp) //! * Warp [async-graphql-warp](https://crates.io/crates/async-graphql-warp)
//! * Tide [async-graphql-tide](https://crates.io/crates/async-graphql-tide)
//! //!
//! ## License //! ## License
//! //!
@ -447,8 +448,8 @@ pub use async_graphql_derive::InputObject;
/// ///
/// # Fields /// # Fields
/// ///
/// The type, name, and parameters of the interface field must exactly match the type that implements the interface, /// The type, name, and parameter fields of the interface must exactly match the type of the
/// The internal implementation is a forward of the function call. /// implementation interface, but FieldResult can be omitted.
/// ///
/// ```rust /// ```rust
/// use async_graphql::*; /// use async_graphql::*;