pub trait GraphQLSubscriptionType<S = DefaultScalarValue>: GraphQLSubscriptionValue<S> + GraphQLType<S>{ }
Expand description
Extension of GraphQLType
trait with asynchronous subscription execution logic.
It’s automatically implemented for GraphQLSubscriptionValue
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.