pub trait GraphQLTypeAsync<S = DefaultScalarValue>: GraphQLValueAsync<S> + GraphQLType<S>{ }
Expand description
Extension of GraphQLType
trait with asynchronous queries/mutations resolvers.
It’s automatically implemented for GraphQLValueAsync
and GraphQLType
implementers, so
doesn’t require manual or code-generated implementation.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.