juniper_codegen: macro hygiene for graphql_subscription (#948)
Fully qualify `std::result::Result` such that it doesn't collide with locally defined type aliases for `Result`. This improves macro hygiene.
This commit is contained in:
parent
d4fda786ba
commit
de4c0e9088
1 changed files with 1 additions and 1 deletions
|
@ -1399,7 +1399,7 @@ impl GraphQLTypeDefiniton {
|
||||||
executor: &'ref_e ::juniper::Executor<'ref_e, 'e, Self::Context, #scalar>,
|
executor: &'ref_e ::juniper::Executor<'ref_e, 'e, Self::Context, #scalar>,
|
||||||
) -> std::pin::Pin<Box<
|
) -> std::pin::Pin<Box<
|
||||||
dyn ::juniper::futures::future::Future<
|
dyn ::juniper::futures::future::Future<
|
||||||
Output = Result<
|
Output = std::result::Result<
|
||||||
::juniper::Value<::juniper::ValuesStream<'res, #scalar>>,
|
::juniper::Value<::juniper::ValuesStream<'res, #scalar>>,
|
||||||
::juniper::FieldError<#scalar>
|
::juniper::FieldError<#scalar>
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue