mirror of https://github.com/rust-lang/rust.git
14 lines
567 B
Plaintext
14 lines
567 B
Plaintext
error[E0277]: the trait bound `&str: AsExpression<Integer>` is not satisfied
|
|
--> $DIR/as_expression.rs:56:15
|
|
|
|
|
LL | SelectInt.check("bar");
|
|
| ^^^^^ the trait `AsExpression<Integer>` is not implemented for `&str`
|
|
|
|
|
= help: the trait `AsExpression<Integer>` is not implemented for `&str`
|
|
but trait `AsExpression<Text>` is implemented for it
|
|
= help: for that trait implementation, expected `Text`, found `Integer`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|