Update codegen tests for 1.81 Rust

This commit is contained in:
tyranron 2024-09-09 15:50:37 +03:00
parent fb1531f90c
commit fb96fb1dd1
No known key found for this signature in database
GPG key ID: 762E144FB230A4F0
20 changed files with 267 additions and 267 deletions

View file

@ -5,14 +5,14 @@ error[E0277]: the trait bound `ObjectA: IsInputType<__S>` is not satisfied
| ^^^^^^^ the trait `IsInputType<__S>` is not implemented for `ObjectA` | ^^^^^^^ the trait `IsInputType<__S>` is not implemented for `ObjectA`
| |
= help: the following other types implement trait `IsInputType<S>`: = help: the following other types implement trait `IsInputType<S>`:
<&T as IsInputType<S>> `&T` implements `IsInputType<S>`
<Arc<T> as IsInputType<S>> `Arc<T>` implements `IsInputType<S>`
<Box<T> as IsInputType<S>> `Box<T>` implements `IsInputType<S>`
<ID as IsInputType<__S>> `ID` implements `IsInputType<__S>`
<Object as IsInputType<__S>> `Object` implements `IsInputType<__S>`
<TypeKind as IsInputType<__S>> `TypeKind` implements `IsInputType<__S>`
<Vec<T> as IsInputType<S>> `Vec<T>` implements `IsInputType<S>`
<[T; N] as IsInputType<S>> `[T; N]` implements `IsInputType<S>`
and $N others and $N others
error[E0277]: the trait bound `ObjectA: FromInputValue<__S>` is not satisfied error[E0277]: the trait bound `ObjectA: FromInputValue<__S>` is not satisfied
@ -25,14 +25,14 @@ error[E0277]: the trait bound `ObjectA: FromInputValue<__S>` is not satisfied
| ^^^^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjectA` | ^^^^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjectA`
| |
= help: the following other types implement trait `FromInputValue<S>`: = help: the following other types implement trait `FromInputValue<S>`:
<Arc<T> as FromInputValue<S>> `Arc<T>` implements `FromInputValue<S>`
<Box<T> as FromInputValue<S>> `Box<T>` implements `FromInputValue<S>`
<ID as FromInputValue<__S>> `ID` implements `FromInputValue<__S>`
<Object as FromInputValue<__S>> `Object` implements `FromInputValue<__S>`
<TypeKind as FromInputValue<__S>> `TypeKind` implements `FromInputValue<__S>`
<Vec<T> as FromInputValue<S>> `Vec<T>` implements `FromInputValue<S>`
<[T; N] as FromInputValue<S>> `[T; N]` implements `FromInputValue<S>`
<bool as FromInputValue<__S>> `bool` implements `FromInputValue<__S>`
and $N others and $N others
note: required by a bound in `Registry::<'r, S>::arg` note: required by a bound in `Registry::<'r, S>::arg`
--> $WORKSPACE/juniper/src/executor/mod.rs --> $WORKSPACE/juniper/src/executor/mod.rs
@ -50,14 +50,14 @@ error[E0277]: the trait bound `ObjectA: FromInputValue<__S>` is not satisfied
| ^^^^^^^^^^^^^^^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjectA` | ^^^^^^^^^^^^^^^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjectA`
| |
= help: the following other types implement trait `FromInputValue<S>`: = help: the following other types implement trait `FromInputValue<S>`:
<Arc<T> as FromInputValue<S>> `Arc<T>` implements `FromInputValue<S>`
<Box<T> as FromInputValue<S>> `Box<T>` implements `FromInputValue<S>`
<ID as FromInputValue<__S>> `ID` implements `FromInputValue<__S>`
<Object as FromInputValue<__S>> `Object` implements `FromInputValue<__S>`
<TypeKind as FromInputValue<__S>> `TypeKind` implements `FromInputValue<__S>`
<Vec<T> as FromInputValue<S>> `Vec<T>` implements `FromInputValue<S>`
<[T; N] as FromInputValue<S>> `[T; N]` implements `FromInputValue<S>`
<bool as FromInputValue<__S>> `bool` implements `FromInputValue<__S>`
and $N others and $N others
= note: this error originates in the derive macro `GraphQLInputObject` (in Nightly builds, run with -Z macro-backtrace for more info) = note: this error originates in the derive macro `GraphQLInputObject` (in Nightly builds, run with -Z macro-backtrace for more info)
@ -68,13 +68,13 @@ error[E0277]: the trait bound `ObjectA: ToInputValue<_>` is not satisfied
| ^^^^^^^^^^^^^^^^^^ the trait `ToInputValue<_>` is not implemented for `ObjectA` | ^^^^^^^^^^^^^^^^^^ the trait `ToInputValue<_>` is not implemented for `ObjectA`
| |
= help: the following other types implement trait `ToInputValue<S>`: = help: the following other types implement trait `ToInputValue<S>`:
<&'a T as ToInputValue<S>> `&'a T` implements `ToInputValue<S>`
<&'a [T] as ToInputValue<S>> `&'a [T]` implements `ToInputValue<S>`
<&'a str as ToInputValue<S>> `&'a str` implements `ToInputValue<S>`
<Arc<T> as ToInputValue<S>> `Arc<T>` implements `ToInputValue<S>`
<Box<T> as ToInputValue<S>> `Box<T>` implements `ToInputValue<S>`
<ID as ToInputValue<__S>> `ID` implements `ToInputValue<__S>`
<Object as ToInputValue<__S>> `Object` implements `ToInputValue<__S>`
<TypeKind as ToInputValue<__S>> `TypeKind` implements `ToInputValue<__S>`
and $N others and $N others
= note: this error originates in the derive macro `GraphQLInputObject` (in Nightly builds, run with -Z macro-backtrace for more info) = note: this error originates in the derive macro `GraphQLInputObject` (in Nightly builds, run with -Z macro-backtrace for more info)

View file

@ -5,12 +5,12 @@ error[E0277]: the trait bound `ObjB: IsOutputType<__S>` is not satisfied
| ^^^^^^^^^^^^^^^^^^^^ the trait `IsOutputType<__S>` is not implemented for `ObjB` | ^^^^^^^^^^^^^^^^^^^^ the trait `IsOutputType<__S>` is not implemented for `ObjB`
| |
= help: the following other types implement trait `IsOutputType<S>`: = help: the following other types implement trait `IsOutputType<S>`:
<&T as IsOutputType<S>> `&T` implements `IsOutputType<S>`
<Arc<T> as IsOutputType<S>> `Arc<T>` implements `IsOutputType<S>`
<Argument<'a, S> as IsOutputType<S>> `Argument<'a, S>` implements `IsOutputType<S>`
<Box<T> as IsOutputType<S>> `Box<T>` implements `IsOutputType<S>`
<CharacterValueEnum as IsOutputType<__S>> `CharacterValueEnum` implements `IsOutputType<__S>`
<EnumValue as IsOutputType<__S>> `EnumValue` implements `IsOutputType<__S>`
<ID as IsOutputType<__S>> `ID` implements `IsOutputType<__S>`
<SchemaType<'a, S> as IsOutputType<S>> `SchemaType<'a, S>` implements `IsOutputType<S>`
and $N others and $N others

View file

@ -5,12 +5,12 @@ error[E0277]: the trait bound `ObjB: IsOutputType<__S>` is not satisfied
| ^^^^^^^^^^^^^^^^ the trait `IsOutputType<__S>` is not implemented for `ObjB` | ^^^^^^^^^^^^^^^^ the trait `IsOutputType<__S>` is not implemented for `ObjB`
| |
= help: the following other types implement trait `IsOutputType<S>`: = help: the following other types implement trait `IsOutputType<S>`:
<&T as IsOutputType<S>> `&T` implements `IsOutputType<S>`
<Arc<T> as IsOutputType<S>> `Arc<T>` implements `IsOutputType<S>`
<Argument<'a, S> as IsOutputType<S>> `Argument<'a, S>` implements `IsOutputType<S>`
<Box<T> as IsOutputType<S>> `Box<T>` implements `IsOutputType<S>`
<CharacterValueEnum as IsOutputType<__S>> `CharacterValueEnum` implements `IsOutputType<__S>`
<EnumValue as IsOutputType<__S>> `EnumValue` implements `IsOutputType<__S>`
<ID as IsOutputType<__S>> `ID` implements `IsOutputType<__S>`
<SchemaType<'a, S> as IsOutputType<S>> `SchemaType<'a, S>` implements `IsOutputType<S>`
and $N others and $N others

View file

@ -5,14 +5,14 @@ error[E0277]: the trait bound `ObjA: IsInputType<__S>` is not satisfied
| ^^^^ the trait `IsInputType<__S>` is not implemented for `ObjA` | ^^^^ the trait `IsInputType<__S>` is not implemented for `ObjA`
| |
= help: the following other types implement trait `IsInputType<S>`: = help: the following other types implement trait `IsInputType<S>`:
<&T as IsInputType<S>> `&T` implements `IsInputType<S>`
<Arc<T> as IsInputType<S>> `Arc<T>` implements `IsInputType<S>`
<Box<T> as IsInputType<S>> `Box<T>` implements `IsInputType<S>`
<ID as IsInputType<__S>> `ID` implements `IsInputType<__S>`
<TypeKind as IsInputType<__S>> `TypeKind` implements `IsInputType<__S>`
<Vec<T> as IsInputType<S>> `Vec<T>` implements `IsInputType<S>`
<[T; N] as IsInputType<S>> `[T; N]` implements `IsInputType<S>`
<[T] as IsInputType<S>> `[T]` implements `IsInputType<S>`
and $N others and $N others
error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied
@ -25,14 +25,14 @@ error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied
| ^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA` | ^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA`
| |
= help: the following other types implement trait `FromInputValue<S>`: = help: the following other types implement trait `FromInputValue<S>`:
<Arc<T> as FromInputValue<S>> `Arc<T>` implements `FromInputValue<S>`
<Box<T> as FromInputValue<S>> `Box<T>` implements `FromInputValue<S>`
<ID as FromInputValue<__S>> `ID` implements `FromInputValue<__S>`
<TypeKind as FromInputValue<__S>> `TypeKind` implements `FromInputValue<__S>`
<Vec<T> as FromInputValue<S>> `Vec<T>` implements `FromInputValue<S>`
<[T; N] as FromInputValue<S>> `[T; N]` implements `FromInputValue<S>`
<bool as FromInputValue<__S>> `bool` implements `FromInputValue<__S>`
<f64 as FromInputValue<__S>> `f64` implements `FromInputValue<__S>`
and $N others and $N others
note: required by a bound in `Registry::<'r, S>::arg` note: required by a bound in `Registry::<'r, S>::arg`
--> $WORKSPACE/juniper/src/executor/mod.rs --> $WORKSPACE/juniper/src/executor/mod.rs

View file

@ -5,14 +5,14 @@ error[E0277]: the trait bound `[bool; 2]: From<[bool; 3]>` is not satisfied
| ^^^^^^^^^^^^^^^^^^^^ the trait `From<[bool; 3]>` is not implemented for `[bool; 2]`, which is required by `[bool; 3]: Into<_>` | ^^^^^^^^^^^^^^^^^^^^ the trait `From<[bool; 3]>` is not implemented for `[bool; 2]`, which is required by `[bool; 3]: Into<_>`
| |
= help: the following other types implement trait `From<T>`: = help: the following other types implement trait `From<T>`:
<[T; 10] as From<(T, T, T, T, T, T, T, T, T, T)>> `[T; 10]` implements `From<(T, T, T, T, T, T, T, T, T, T)>`
<[T; 11] as From<(T, T, T, T, T, T, T, T, T, T, T)>> `[T; 11]` implements `From<(T, T, T, T, T, T, T, T, T, T, T)>`
<[T; 12] as From<(T, T, T, T, T, T, T, T, T, T, T, T)>> `[T; 12]` implements `From<(T, T, T, T, T, T, T, T, T, T, T, T)>`
<[T; 1] as From<(T,)>> `[T; 1]` implements `From<(T,)>`
<[T; 2] as From<(T, T)>> `[T; 2]` implements `From<(T, T)>`
<[T; 3] as From<(T, T, T)>> `[T; 3]` implements `From<(T, T, T)>`
<[T; 4] as From<(T, T, T, T)>> `[T; 4]` implements `From<(T, T, T, T)>`
<[T; 5] as From<(T, T, T, T, T)>> `[T; 5]` implements `From<(T, T, T, T, T)>`
and $N others and $N others
= note: required for `[bool; 3]` to implement `Into<[bool; 2]>` = note: required for `[bool; 3]` to implement `Into<[bool; 2]>`
= note: this error originates in the attribute macro `graphql_interface` (in Nightly builds, run with -Z macro-backtrace for more info) = note: this error originates in the attribute macro `graphql_interface` (in Nightly builds, run with -Z macro-backtrace for more info)

View file

@ -5,12 +5,12 @@ error[E0277]: the trait bound `ObjB: IsOutputType<__S>` is not satisfied
| ^^^^^^^^^^^^^^^^^^^^ the trait `IsOutputType<__S>` is not implemented for `ObjB` | ^^^^^^^^^^^^^^^^^^^^ the trait `IsOutputType<__S>` is not implemented for `ObjB`
| |
= help: the following other types implement trait `IsOutputType<S>`: = help: the following other types implement trait `IsOutputType<S>`:
<&T as IsOutputType<S>> `&T` implements `IsOutputType<S>`
<Arc<T> as IsOutputType<S>> `Arc<T>` implements `IsOutputType<S>`
<Argument<'a, S> as IsOutputType<S>> `Argument<'a, S>` implements `IsOutputType<S>`
<Box<T> as IsOutputType<S>> `Box<T>` implements `IsOutputType<S>`
<CharacterValueEnum as IsOutputType<__S>> `CharacterValueEnum` implements `IsOutputType<__S>`
<EnumValue as IsOutputType<__S>> `EnumValue` implements `IsOutputType<__S>`
<ID as IsOutputType<__S>> `ID` implements `IsOutputType<__S>`
<SchemaType<'a, S> as IsOutputType<S>> `SchemaType<'a, S>` implements `IsOutputType<S>`
and $N others and $N others

View file

@ -5,14 +5,14 @@ error[E0277]: the trait bound `ObjA: IsInputType<__S>` is not satisfied
| ^^^^ the trait `IsInputType<__S>` is not implemented for `ObjA` | ^^^^ the trait `IsInputType<__S>` is not implemented for `ObjA`
| |
= help: the following other types implement trait `IsInputType<S>`: = help: the following other types implement trait `IsInputType<S>`:
<&T as IsInputType<S>> `&T` implements `IsInputType<S>`
<Arc<T> as IsInputType<S>> `Arc<T>` implements `IsInputType<S>`
<Box<T> as IsInputType<S>> `Box<T>` implements `IsInputType<S>`
<ID as IsInputType<__S>> `ID` implements `IsInputType<__S>`
<TypeKind as IsInputType<__S>> `TypeKind` implements `IsInputType<__S>`
<Vec<T> as IsInputType<S>> `Vec<T>` implements `IsInputType<S>`
<[T; N] as IsInputType<S>> `[T; N]` implements `IsInputType<S>`
<[T] as IsInputType<S>> `[T]` implements `IsInputType<S>`
and $N others and $N others
error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied
@ -25,14 +25,14 @@ error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied
| ^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA` | ^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA`
| |
= help: the following other types implement trait `FromInputValue<S>`: = help: the following other types implement trait `FromInputValue<S>`:
<Arc<T> as FromInputValue<S>> `Arc<T>` implements `FromInputValue<S>`
<Box<T> as FromInputValue<S>> `Box<T>` implements `FromInputValue<S>`
<ID as FromInputValue<__S>> `ID` implements `FromInputValue<__S>`
<TypeKind as FromInputValue<__S>> `TypeKind` implements `FromInputValue<__S>`
<Vec<T> as FromInputValue<S>> `Vec<T>` implements `FromInputValue<S>`
<[T; N] as FromInputValue<S>> `[T; N]` implements `FromInputValue<S>`
<bool as FromInputValue<__S>> `bool` implements `FromInputValue<__S>`
<f64 as FromInputValue<__S>> `f64` implements `FromInputValue<__S>`
and $N others and $N others
note: required by a bound in `Registry::<'r, S>::arg` note: required by a bound in `Registry::<'r, S>::arg`
--> $WORKSPACE/juniper/src/executor/mod.rs --> $WORKSPACE/juniper/src/executor/mod.rs
@ -50,14 +50,14 @@ error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied
| ^^^^^^^^^^^^^^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA` | ^^^^^^^^^^^^^^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA`
| |
= help: the following other types implement trait `FromInputValue<S>`: = help: the following other types implement trait `FromInputValue<S>`:
<Arc<T> as FromInputValue<S>> `Arc<T>` implements `FromInputValue<S>`
<Box<T> as FromInputValue<S>> `Box<T>` implements `FromInputValue<S>`
<ID as FromInputValue<__S>> `ID` implements `FromInputValue<__S>`
<TypeKind as FromInputValue<__S>> `TypeKind` implements `FromInputValue<__S>`
<Vec<T> as FromInputValue<S>> `Vec<T>` implements `FromInputValue<S>`
<[T; N] as FromInputValue<S>> `[T; N]` implements `FromInputValue<S>`
<bool as FromInputValue<__S>> `bool` implements `FromInputValue<__S>`
<f64 as FromInputValue<__S>> `f64` implements `FromInputValue<__S>`
and $N others and $N others
= note: this error originates in the attribute macro `graphql_object` (in Nightly builds, run with -Z macro-backtrace for more info) = note: this error originates in the attribute macro `graphql_object` (in Nightly builds, run with -Z macro-backtrace for more info)
@ -68,14 +68,14 @@ error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied
| ^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA` | ^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA`
| |
= help: the following other types implement trait `FromInputValue<S>`: = help: the following other types implement trait `FromInputValue<S>`:
<Arc<T> as FromInputValue<S>> `Arc<T>` implements `FromInputValue<S>`
<Box<T> as FromInputValue<S>> `Box<T>` implements `FromInputValue<S>`
<ID as FromInputValue<__S>> `ID` implements `FromInputValue<__S>`
<TypeKind as FromInputValue<__S>> `TypeKind` implements `FromInputValue<__S>`
<Vec<T> as FromInputValue<S>> `Vec<T>` implements `FromInputValue<S>`
<[T; N] as FromInputValue<S>> `[T; N]` implements `FromInputValue<S>`
<bool as FromInputValue<__S>> `bool` implements `FromInputValue<__S>`
<f64 as FromInputValue<__S>> `f64` implements `FromInputValue<__S>`
and $N others and $N others
warning: unused variable: `obj` warning: unused variable: `obj`

View file

@ -5,14 +5,14 @@ error[E0277]: the trait bound `[bool; 2]: From<[bool; 3]>` is not satisfied
| ^^^^^^^^^^^^^^^^^ the trait `From<[bool; 3]>` is not implemented for `[bool; 2]`, which is required by `[bool; 3]: Into<_>` | ^^^^^^^^^^^^^^^^^ the trait `From<[bool; 3]>` is not implemented for `[bool; 2]`, which is required by `[bool; 3]: Into<_>`
| |
= help: the following other types implement trait `From<T>`: = help: the following other types implement trait `From<T>`:
<[T; 10] as From<(T, T, T, T, T, T, T, T, T, T)>> `[T; 10]` implements `From<(T, T, T, T, T, T, T, T, T, T)>`
<[T; 11] as From<(T, T, T, T, T, T, T, T, T, T, T)>> `[T; 11]` implements `From<(T, T, T, T, T, T, T, T, T, T, T)>`
<[T; 12] as From<(T, T, T, T, T, T, T, T, T, T, T, T)>> `[T; 12]` implements `From<(T, T, T, T, T, T, T, T, T, T, T, T)>`
<[T; 1] as From<(T,)>> `[T; 1]` implements `From<(T,)>`
<[T; 2] as From<(T, T)>> `[T; 2]` implements `From<(T, T)>`
<[T; 3] as From<(T, T, T)>> `[T; 3]` implements `From<(T, T, T)>`
<[T; 4] as From<(T, T, T, T)>> `[T; 4]` implements `From<(T, T, T, T)>`
<[T; 5] as From<(T, T, T, T, T)>> `[T; 5]` implements `From<(T, T, T, T, T)>`
and $N others and $N others
= note: required for `[bool; 3]` to implement `Into<[bool; 2]>` = note: required for `[bool; 3]` to implement `Into<[bool; 2]>`
= note: this error originates in the attribute macro `graphql_object` (in Nightly builds, run with -Z macro-backtrace for more info) = note: this error originates in the attribute macro `graphql_object` (in Nightly builds, run with -Z macro-backtrace for more info)

View file

@ -5,12 +5,12 @@ error[E0277]: the trait bound `ObjB: IsOutputType<__S>` is not satisfied
| ^^^^^^^^^^^^^^^^^ the trait `IsOutputType<__S>` is not implemented for `ObjB` | ^^^^^^^^^^^^^^^^^ the trait `IsOutputType<__S>` is not implemented for `ObjB`
| |
= help: the following other types implement trait `IsOutputType<S>`: = help: the following other types implement trait `IsOutputType<S>`:
<&T as IsOutputType<S>> `&T` implements `IsOutputType<S>`
<Arc<T> as IsOutputType<S>> `Arc<T>` implements `IsOutputType<S>`
<Argument<'a, S> as IsOutputType<S>> `Argument<'a, S>` implements `IsOutputType<S>`
<Box<T> as IsOutputType<S>> `Box<T>` implements `IsOutputType<S>`
<EnumValue as IsOutputType<__S>> `EnumValue` implements `IsOutputType<__S>`
<ID as IsOutputType<__S>> `ID` implements `IsOutputType<__S>`
<ObjA as IsOutputType<__S>> `ObjA` implements `IsOutputType<__S>`
<SchemaType<'a, S> as IsOutputType<S>> `SchemaType<'a, S>` implements `IsOutputType<S>`
and $N others and $N others

View file

@ -5,12 +5,12 @@ error[E0277]: the trait bound `ObjB: IsOutputType<__S>` is not satisfied
| ^^^^^^^^^^^^^ the trait `IsOutputType<__S>` is not implemented for `ObjB` | ^^^^^^^^^^^^^ the trait `IsOutputType<__S>` is not implemented for `ObjB`
| |
= help: the following other types implement trait `IsOutputType<S>`: = help: the following other types implement trait `IsOutputType<S>`:
<&T as IsOutputType<S>> `&T` implements `IsOutputType<S>`
<Arc<T> as IsOutputType<S>> `Arc<T>` implements `IsOutputType<S>`
<Argument<'a, S> as IsOutputType<S>> `Argument<'a, S>` implements `IsOutputType<S>`
<Box<T> as IsOutputType<S>> `Box<T>` implements `IsOutputType<S>`
<EnumValue as IsOutputType<__S>> `EnumValue` implements `IsOutputType<__S>`
<ID as IsOutputType<__S>> `ID` implements `IsOutputType<__S>`
<ObjA as IsOutputType<__S>> `ObjA` implements `IsOutputType<__S>`
<SchemaType<'a, S> as IsOutputType<S>> `SchemaType<'a, S>` implements `IsOutputType<S>`
and $N others and $N others

View file

@ -13,14 +13,14 @@ error[E0277]: the trait bound `ObjA: IsInputType<__S>` is not satisfied
| ^^^^ the trait `IsInputType<__S>` is not implemented for `ObjA` | ^^^^ the trait `IsInputType<__S>` is not implemented for `ObjA`
| |
= help: the following other types implement trait `IsInputType<S>`: = help: the following other types implement trait `IsInputType<S>`:
<&T as IsInputType<S>> `&T` implements `IsInputType<S>`
<Arc<T> as IsInputType<S>> `Arc<T>` implements `IsInputType<S>`
<Box<T> as IsInputType<S>> `Box<T>` implements `IsInputType<S>`
<ID as IsInputType<__S>> `ID` implements `IsInputType<__S>`
<TypeKind as IsInputType<__S>> `TypeKind` implements `IsInputType<__S>`
<Vec<T> as IsInputType<S>> `Vec<T>` implements `IsInputType<S>`
<[T; N] as IsInputType<S>> `[T; N]` implements `IsInputType<S>`
<[T] as IsInputType<S>> `[T]` implements `IsInputType<S>`
and $N others and $N others
error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied
@ -33,14 +33,14 @@ error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied
| ^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA` | ^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA`
| |
= help: the following other types implement trait `FromInputValue<S>`: = help: the following other types implement trait `FromInputValue<S>`:
<Arc<T> as FromInputValue<S>> `Arc<T>` implements `FromInputValue<S>`
<Box<T> as FromInputValue<S>> `Box<T>` implements `FromInputValue<S>`
<ID as FromInputValue<__S>> `ID` implements `FromInputValue<__S>`
<TypeKind as FromInputValue<__S>> `TypeKind` implements `FromInputValue<__S>`
<Vec<T> as FromInputValue<S>> `Vec<T>` implements `FromInputValue<S>`
<[T; N] as FromInputValue<S>> `[T; N]` implements `FromInputValue<S>`
<bool as FromInputValue<__S>> `bool` implements `FromInputValue<__S>`
<f64 as FromInputValue<__S>> `f64` implements `FromInputValue<__S>`
and $N others and $N others
note: required by a bound in `Registry::<'r, S>::arg` note: required by a bound in `Registry::<'r, S>::arg`
--> $WORKSPACE/juniper/src/executor/mod.rs --> $WORKSPACE/juniper/src/executor/mod.rs
@ -58,14 +58,14 @@ error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied
| ^^^^^^^^^^^^^^^^^^^^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA` | ^^^^^^^^^^^^^^^^^^^^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA`
| |
= help: the following other types implement trait `FromInputValue<S>`: = help: the following other types implement trait `FromInputValue<S>`:
<Arc<T> as FromInputValue<S>> `Arc<T>` implements `FromInputValue<S>`
<Box<T> as FromInputValue<S>> `Box<T>` implements `FromInputValue<S>`
<ID as FromInputValue<__S>> `ID` implements `FromInputValue<__S>`
<TypeKind as FromInputValue<__S>> `TypeKind` implements `FromInputValue<__S>`
<Vec<T> as FromInputValue<S>> `Vec<T>` implements `FromInputValue<S>`
<[T; N] as FromInputValue<S>> `[T; N]` implements `FromInputValue<S>`
<bool as FromInputValue<__S>> `bool` implements `FromInputValue<__S>`
<f64 as FromInputValue<__S>> `f64` implements `FromInputValue<__S>`
and $N others and $N others
= note: this error originates in the attribute macro `graphql_subscription` (in Nightly builds, run with -Z macro-backtrace for more info) = note: this error originates in the attribute macro `graphql_subscription` (in Nightly builds, run with -Z macro-backtrace for more info)
@ -76,12 +76,12 @@ error[E0277]: the trait bound `ObjA: FromInputValue<__S>` is not satisfied
| ^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA` | ^^^^ the trait `FromInputValue<__S>` is not implemented for `ObjA`
| |
= help: the following other types implement trait `FromInputValue<S>`: = help: the following other types implement trait `FromInputValue<S>`:
<Arc<T> as FromInputValue<S>> `Arc<T>` implements `FromInputValue<S>`
<Box<T> as FromInputValue<S>> `Box<T>` implements `FromInputValue<S>`
<ID as FromInputValue<__S>> `ID` implements `FromInputValue<__S>`
<TypeKind as FromInputValue<__S>> `TypeKind` implements `FromInputValue<__S>`
<Vec<T> as FromInputValue<S>> `Vec<T>` implements `FromInputValue<S>`
<[T; N] as FromInputValue<S>> `[T; N]` implements `FromInputValue<S>`
<bool as FromInputValue<__S>> `bool` implements `FromInputValue<__S>`
<f64 as FromInputValue<__S>> `f64` implements `FromInputValue<__S>`
and $N others and $N others

View file

@ -5,14 +5,14 @@ error[E0277]: the trait bound `[bool; 2]: From<[bool; 3]>` is not satisfied
| ^^^^^^^^^^^^^^^^^^^^^^^ the trait `From<[bool; 3]>` is not implemented for `[bool; 2]`, which is required by `[bool; 3]: Into<_>` | ^^^^^^^^^^^^^^^^^^^^^^^ the trait `From<[bool; 3]>` is not implemented for `[bool; 2]`, which is required by `[bool; 3]: Into<_>`
| |
= help: the following other types implement trait `From<T>`: = help: the following other types implement trait `From<T>`:
<[T; 10] as From<(T, T, T, T, T, T, T, T, T, T)>> `[T; 10]` implements `From<(T, T, T, T, T, T, T, T, T, T)>`
<[T; 11] as From<(T, T, T, T, T, T, T, T, T, T, T)>> `[T; 11]` implements `From<(T, T, T, T, T, T, T, T, T, T, T)>`
<[T; 12] as From<(T, T, T, T, T, T, T, T, T, T, T, T)>> `[T; 12]` implements `From<(T, T, T, T, T, T, T, T, T, T, T, T)>`
<[T; 1] as From<(T,)>> `[T; 1]` implements `From<(T,)>`
<[T; 2] as From<(T, T)>> `[T; 2]` implements `From<(T, T)>`
<[T; 3] as From<(T, T, T)>> `[T; 3]` implements `From<(T, T, T)>`
<[T; 4] as From<(T, T, T, T)>> `[T; 4]` implements `From<(T, T, T, T)>`
<[T; 5] as From<(T, T, T, T, T)>> `[T; 5]` implements `From<(T, T, T, T, T)>`
and $N others and $N others
= note: required for `[bool; 3]` to implement `Into<[bool; 2]>` = note: required for `[bool; 3]` to implement `Into<[bool; 2]>`
= note: this error originates in the attribute macro `graphql_subscription` (in Nightly builds, run with -Z macro-backtrace for more info) = note: this error originates in the attribute macro `graphql_subscription` (in Nightly builds, run with -Z macro-backtrace for more info)

View file

@ -5,12 +5,12 @@ error[E0277]: the trait bound `ObjB: IsOutputType<__S>` is not satisfied
| ^^^^^^^^^^^^^^^^^^^^^^^ the trait `IsOutputType<__S>` is not implemented for `ObjB` | ^^^^^^^^^^^^^^^^^^^^^^^ the trait `IsOutputType<__S>` is not implemented for `ObjB`
| |
= help: the following other types implement trait `IsOutputType<S>`: = help: the following other types implement trait `IsOutputType<S>`:
<&T as IsOutputType<S>> `&T` implements `IsOutputType<S>`
<Arc<T> as IsOutputType<S>> `Arc<T>` implements `IsOutputType<S>`
<Argument<'a, S> as IsOutputType<S>> `Argument<'a, S>` implements `IsOutputType<S>`
<Box<T> as IsOutputType<S>> `Box<T>` implements `IsOutputType<S>`
<EnumValue as IsOutputType<__S>> `EnumValue` implements `IsOutputType<__S>`
<ID as IsOutputType<__S>> `ID` implements `IsOutputType<__S>`
<ObjA as IsOutputType<__S>> `ObjA` implements `IsOutputType<__S>`
<SchemaType<'a, S> as IsOutputType<S>> `SchemaType<'a, S>` implements `IsOutputType<S>`
and $N others and $N others

View file

@ -5,12 +5,12 @@ error[E0277]: the trait bound `Test: GraphQLObject<__S>` is not satisfied
| ^^^^ the trait `GraphQLObject<__S>` is not implemented for `Test` | ^^^^ the trait `GraphQLObject<__S>` is not implemented for `Test`
| |
= help: the following other types implement trait `GraphQLObject<S>`: = help: the following other types implement trait `GraphQLObject<S>`:
<&T as GraphQLObject<S>> `&T` implements `GraphQLObject<S>`
<Arc<T> as GraphQLObject<S>> `Arc<T>` implements `GraphQLObject<S>`
<Argument<'a, S> as GraphQLObject<S>> `Argument<'a, S>` implements `GraphQLObject<S>`
<Box<T> as GraphQLObject<S>> `Box<T>` implements `GraphQLObject<S>`
<EnumValue as GraphQLObject<__S>> `EnumValue` implements `GraphQLObject<__S>`
<SchemaType<'a, S> as GraphQLObject<S>> `SchemaType<'a, S>` implements `GraphQLObject<S>`
<juniper::meta::Field<'a, S> as GraphQLObject<S>> `juniper::meta::Field<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::DirectiveType<'a, S> as GraphQLObject<S>> `juniper::schema::model::DirectiveType<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::TypeType<'a, S> as GraphQLObject<S>> `juniper::schema::model::TypeType<'a, S>` implements `GraphQLObject<S>`

View file

@ -16,15 +16,15 @@ error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not s
| ^^^^^^^^^^^^^^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String` | ^^^^^^^^^^^^^^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String`
| |
= help: the following other types implement trait `GraphQLObject<S>`: = help: the following other types implement trait `GraphQLObject<S>`:
<&T as GraphQLObject<S>> `&T` implements `GraphQLObject<S>`
<Arc<T> as GraphQLObject<S>> `Arc<T>` implements `GraphQLObject<S>`
<Argument<'a, S> as GraphQLObject<S>> `Argument<'a, S>` implements `GraphQLObject<S>`
<Box<T> as GraphQLObject<S>> `Box<T>` implements `GraphQLObject<S>`
<EnumValue as GraphQLObject<__S>> `EnumValue` implements `GraphQLObject<__S>`
<SchemaType<'a, S> as GraphQLObject<S>> `SchemaType<'a, S>` implements `GraphQLObject<S>`
<juniper::meta::Field<'a, S> as GraphQLObject<S>> `juniper::meta::Field<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::DirectiveType<'a, S> as GraphQLObject<S>> `juniper::schema::model::DirectiveType<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::TypeType<'a, S> as GraphQLObject<S>> `juniper::schema::model::TypeType<'a, S>` implements `GraphQLObject<S>`
error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not satisfied error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not satisfied
--> fail/union/enum_same_type_ugly.rs:6:7 --> fail/union/enum_same_type_ugly.rs:6:7
@ -33,12 +33,12 @@ error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not s
| ^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String` | ^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String`
| |
= help: the following other types implement trait `GraphQLObject<S>`: = help: the following other types implement trait `GraphQLObject<S>`:
<&T as GraphQLObject<S>> `&T` implements `GraphQLObject<S>`
<Arc<T> as GraphQLObject<S>> `Arc<T>` implements `GraphQLObject<S>`
<Argument<'a, S> as GraphQLObject<S>> `Argument<'a, S>` implements `GraphQLObject<S>`
<Box<T> as GraphQLObject<S>> `Box<T>` implements `GraphQLObject<S>`
<EnumValue as GraphQLObject<__S>> `EnumValue` implements `GraphQLObject<__S>`
<SchemaType<'a, S> as GraphQLObject<S>> `SchemaType<'a, S>` implements `GraphQLObject<S>`
<juniper::meta::Field<'a, S> as GraphQLObject<S>> `juniper::meta::Field<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::DirectiveType<'a, S> as GraphQLObject<S>> `juniper::schema::model::DirectiveType<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::TypeType<'a, S> as GraphQLObject<S>> `juniper::schema::model::TypeType<'a, S>` implements `GraphQLObject<S>`

View file

@ -5,12 +5,12 @@ error[E0277]: the trait bound `Test: GraphQLObject<__S>` is not satisfied
| ^^^^ the trait `GraphQLObject<__S>` is not implemented for `Test` | ^^^^ the trait `GraphQLObject<__S>` is not implemented for `Test`
| |
= help: the following other types implement trait `GraphQLObject<S>`: = help: the following other types implement trait `GraphQLObject<S>`:
<&T as GraphQLObject<S>> `&T` implements `GraphQLObject<S>`
<Arc<T> as GraphQLObject<S>> `Arc<T>` implements `GraphQLObject<S>`
<Argument<'a, S> as GraphQLObject<S>> `Argument<'a, S>` implements `GraphQLObject<S>`
<Box<T> as GraphQLObject<S>> `Box<T>` implements `GraphQLObject<S>`
<EnumValue as GraphQLObject<__S>> `EnumValue` implements `GraphQLObject<__S>`
<SchemaType<'a, S> as GraphQLObject<S>> `SchemaType<'a, S>` implements `GraphQLObject<S>`
<juniper::meta::Field<'a, S> as GraphQLObject<S>> `juniper::meta::Field<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::DirectiveType<'a, S> as GraphQLObject<S>> `juniper::schema::model::DirectiveType<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::TypeType<'a, S> as GraphQLObject<S>> `juniper::schema::model::TypeType<'a, S>` implements `GraphQLObject<S>`

View file

@ -16,15 +16,15 @@ error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not s
| ^^^^^^^^^^^^^^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String` | ^^^^^^^^^^^^^^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String`
| |
= help: the following other types implement trait `GraphQLObject<S>`: = help: the following other types implement trait `GraphQLObject<S>`:
<&T as GraphQLObject<S>> `&T` implements `GraphQLObject<S>`
<Arc<T> as GraphQLObject<S>> `Arc<T>` implements `GraphQLObject<S>`
<Argument<'a, S> as GraphQLObject<S>> `Argument<'a, S>` implements `GraphQLObject<S>`
<Box<T> as GraphQLObject<S>> `Box<T>` implements `GraphQLObject<S>`
<EnumValue as GraphQLObject<__S>> `EnumValue` implements `GraphQLObject<__S>`
<SchemaType<'a, S> as GraphQLObject<S>> `SchemaType<'a, S>` implements `GraphQLObject<S>`
<juniper::meta::Field<'a, S> as GraphQLObject<S>> `juniper::meta::Field<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::DirectiveType<'a, S> as GraphQLObject<S>> `juniper::schema::model::DirectiveType<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::TypeType<'a, S> as GraphQLObject<S>> `juniper::schema::model::TypeType<'a, S>` implements `GraphQLObject<S>`
error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not satisfied error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not satisfied
--> fail/union/struct_same_type_ugly.rs:4:14 --> fail/union/struct_same_type_ugly.rs:4:14
@ -33,12 +33,12 @@ error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not s
| ^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String` | ^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String`
| |
= help: the following other types implement trait `GraphQLObject<S>`: = help: the following other types implement trait `GraphQLObject<S>`:
<&T as GraphQLObject<S>> `&T` implements `GraphQLObject<S>`
<Arc<T> as GraphQLObject<S>> `Arc<T>` implements `GraphQLObject<S>`
<Argument<'a, S> as GraphQLObject<S>> `Argument<'a, S>` implements `GraphQLObject<S>`
<Box<T> as GraphQLObject<S>> `Box<T>` implements `GraphQLObject<S>`
<EnumValue as GraphQLObject<__S>> `EnumValue` implements `GraphQLObject<__S>`
<SchemaType<'a, S> as GraphQLObject<S>> `SchemaType<'a, S>` implements `GraphQLObject<S>`
<juniper::meta::Field<'a, S> as GraphQLObject<S>> `juniper::meta::Field<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::DirectiveType<'a, S> as GraphQLObject<S>> `juniper::schema::model::DirectiveType<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::TypeType<'a, S> as GraphQLObject<S>> `juniper::schema::model::TypeType<'a, S>` implements `GraphQLObject<S>`

View file

@ -5,8 +5,8 @@ error[E0277]: the trait bound `CustomContext: FromContext<SubContext>` is not sa
| ^^^^^^^^^^^^^^^^ the trait `FromContext<SubContext>` is not implemented for `CustomContext` | ^^^^^^^^^^^^^^^^ the trait `FromContext<SubContext>` is not implemented for `CustomContext`
| |
= help: the following other types implement trait `FromContext<T>`: = help: the following other types implement trait `FromContext<T>`:
<() as FromContext<T>> `()` implements `FromContext<T>`
<SubContext as FromContext<CustomContext>> `SubContext` implements `FromContext<CustomContext>`
= note: this error originates in the attribute macro `graphql_union` (in Nightly builds, run with -Z macro-backtrace for more info) = note: this error originates in the attribute macro `graphql_union` (in Nightly builds, run with -Z macro-backtrace for more info)
error[E0308]: mismatched types error[E0308]: mismatched types

View file

@ -5,12 +5,12 @@ error[E0277]: the trait bound `Test: GraphQLObject<__S>` is not satisfied
| ^^^^ the trait `GraphQLObject<__S>` is not implemented for `Test` | ^^^^ the trait `GraphQLObject<__S>` is not implemented for `Test`
| |
= help: the following other types implement trait `GraphQLObject<S>`: = help: the following other types implement trait `GraphQLObject<S>`:
<&T as GraphQLObject<S>> `&T` implements `GraphQLObject<S>`
<Arc<T> as GraphQLObject<S>> `Arc<T>` implements `GraphQLObject<S>`
<Argument<'a, S> as GraphQLObject<S>> `Argument<'a, S>` implements `GraphQLObject<S>`
<Box<T> as GraphQLObject<S>> `Box<T>` implements `GraphQLObject<S>`
<EnumValue as GraphQLObject<__S>> `EnumValue` implements `GraphQLObject<__S>`
<SchemaType<'a, S> as GraphQLObject<S>> `SchemaType<'a, S>` implements `GraphQLObject<S>`
<juniper::meta::Field<'a, S> as GraphQLObject<S>> `juniper::meta::Field<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::DirectiveType<'a, S> as GraphQLObject<S>> `juniper::schema::model::DirectiveType<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::TypeType<'a, S> as GraphQLObject<S>> `juniper::schema::model::TypeType<'a, S>` implements `GraphQLObject<S>`

View file

@ -16,15 +16,15 @@ error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not s
| ^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String` | ^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String`
| |
= help: the following other types implement trait `GraphQLObject<S>`: = help: the following other types implement trait `GraphQLObject<S>`:
<&T as GraphQLObject<S>> `&T` implements `GraphQLObject<S>`
<Arc<T> as GraphQLObject<S>> `Arc<T>` implements `GraphQLObject<S>`
<Argument<'a, S> as GraphQLObject<S>> `Argument<'a, S>` implements `GraphQLObject<S>`
<Box<T> as GraphQLObject<S>> `Box<T>` implements `GraphQLObject<S>`
<EnumValue as GraphQLObject<__S>> `EnumValue` implements `GraphQLObject<__S>`
<SchemaType<'a, S> as GraphQLObject<S>> `SchemaType<'a, S>` implements `GraphQLObject<S>`
<juniper::meta::Field<'a, S> as GraphQLObject<S>> `juniper::meta::Field<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::DirectiveType<'a, S> as GraphQLObject<S>> `juniper::schema::model::DirectiveType<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::TypeType<'a, S> as GraphQLObject<S>> `juniper::schema::model::TypeType<'a, S>` implements `GraphQLObject<S>`
error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not satisfied error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not satisfied
--> fail/union/trait_same_type_ugly.rs:6:28 --> fail/union/trait_same_type_ugly.rs:6:28
@ -33,12 +33,12 @@ error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not s
| ^^^^^^^^^^^^^^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String` | ^^^^^^^^^^^^^^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String`
| |
= help: the following other types implement trait `GraphQLObject<S>`: = help: the following other types implement trait `GraphQLObject<S>`:
<&T as GraphQLObject<S>> `&T` implements `GraphQLObject<S>`
<Arc<T> as GraphQLObject<S>> `Arc<T>` implements `GraphQLObject<S>`
<Argument<'a, S> as GraphQLObject<S>> `Argument<'a, S>` implements `GraphQLObject<S>`
<Box<T> as GraphQLObject<S>> `Box<T>` implements `GraphQLObject<S>`
<EnumValue as GraphQLObject<__S>> `EnumValue` implements `GraphQLObject<__S>`
<SchemaType<'a, S> as GraphQLObject<S>> `SchemaType<'a, S>` implements `GraphQLObject<S>`
<juniper::meta::Field<'a, S> as GraphQLObject<S>> `juniper::meta::Field<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::DirectiveType<'a, S> as GraphQLObject<S>> `juniper::schema::model::DirectiveType<'a, S>` implements `GraphQLObject<S>`
<juniper::schema::model::TypeType<'a, S> as GraphQLObject<S>> `juniper::schema::model::TypeType<'a, S>` implements `GraphQLObject<S>`