method filter
exists for struct schema::dsl::tb_net_worth, but its trait bounds were not satisfied
#2985
-
Here's my working env:
Here's the structure of project:
Here's the
Here's the
Here's the
Here's the
Here's the compiling error:
Would you please help me with it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
As the compiler is already telling you: Your code is missing imports for any required traits. The corresponding compiler error message:
The API documentation indicates that you want to import QueryDsl in this case. (For the other errors a similar message is emitted.) You can simplify the diesel related import statements by just adding a |
Beta Was this translation helpful? Give feedback.
As the compiler is already telling you: Your code is missing imports for any required traits.
The corresponding compiler error message:
The API documentation indicates that you want to import QueryDsl in this case.
(For the other errors a similar message is emitted.)
You can simplify the diesel related import statements by just addin…