]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-38821.stderr
Merge commit '23d11428de3e973b34a5090a78d62887f821c90e' into clippyup
[rust.git] / src / test / ui / issues / issue-38821.stderr
1 error[E0277]: the trait bound `<Col as Expression>::SqlType: NotNull` is not satisfied
2   --> $DIR/issue-38821.rs:23:17
3    |
4 LL | #[derive(Debug, Copy, Clone)]
5    |                 ^^^^ the trait `NotNull` is not implemented for `<Col as Expression>::SqlType`
6    |
7 note: required because of the requirements on the impl of `IntoNullable` for `<Col as Expression>::SqlType`
8   --> $DIR/issue-38821.rs:9:18
9    |
10 LL | impl<T: NotNull> IntoNullable for T {
11    |                  ^^^^^^^^^^^^     ^
12    = note: this error originates in the derive macro `Copy` (in Nightly builds, run with -Z macro-backtrace for more info)
13 help: consider further restricting the associated type
14    |
15 LL |     Expr: Expression<SqlType=<Col::SqlType as IntoNullable>::Nullable>, <Col as Expression>::SqlType: NotNull,
16    |                                                                       +++++++++++++++++++++++++++++++++++++++
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0277`.