2021-08-11 09:41:49 -05:00
|
|
|
error[E0277]: the trait bound `[bool; 2]: From<[bool; 3]>` is not satisfied
|
2022-12-18 05:52:46 -06:00
|
|
|
--> fail/object/argument_wrong_default_array.rs:5:1
|
2021-08-11 09:41:49 -05:00
|
|
|
|
|
|
|
|
5 | #[graphql_object]
|
2022-12-18 05:52:46 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^ the trait `From<[bool; 3]>` is not implemented for `[bool; 2]`
|
2021-08-11 09:41:49 -05:00
|
|
|
|
|
2022-04-08 09:44:50 -05:00
|
|
|
= help: the following other types implement trait `From<T>`:
|
2022-03-03 07:49:35 -06:00
|
|
|
<&'a [ascii::ascii_char::AsciiChar] as From<&'a ascii::ascii_str::AsciiStr>>
|
2022-04-01 13:10:45 -05:00
|
|
|
<&'a [u32; 4] as From<&'a ppv_lite86::x86_64::vec128_storage>>
|
2022-03-03 07:49:35 -06:00
|
|
|
<&'a [u8] as From<&'a ascii::ascii_str::AsciiStr>>
|
|
|
|
<&'a mut [ascii::ascii_char::AsciiChar] as From<&'a mut ascii::ascii_str::AsciiStr>>
|
2023-06-23 06:11:52 -05:00
|
|
|
<&'input [u8] as From<gimli::read::endian_slice::EndianSlice<'input, Endian>>>
|
|
|
|
<[T; 10] as 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; 12] as From<(T, T, T, T, T, T, T, T, T, T, T, T)>>
|
2022-12-18 05:52:46 -06:00
|
|
|
and $N others
|
2022-08-29 09:10:40 -05:00
|
|
|
= note: required for `[bool; 3]` to implement `Into<[bool; 2]>`
|
2022-12-18 05:52:46 -06:00
|
|
|
= note: this error originates in the attribute macro `graphql_object` (in Nightly builds, run with -Z macro-backtrace for more info)
|