Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modql::field::Fields report error with sea-query 0.32 #6

Open
venson opened this issue Oct 18, 2024 · 0 comments
Open

modql::field::Fields report error with sea-query 0.32 #6

venson opened this issue Oct 18, 2024 · 0 comments

Comments

@venson
Copy link

venson commented Oct 18, 2024

error[E0053]: method sea_idens has an incompatible type for trait
--> src/db/test.rs:5:24
|
5 | #[derive(Debug, Clone, modql::field::Fields, FromRow, Serialize)]
| ^^^^^^^^^^^^^^^^^^^^ expected SeaRc<dyn Iden>, found SeaRc<(dyn Iden + 'static)>
|
= note: expected signature fn() -> Vec<sea_query::types::SeaRc<(dyn sea_query::types::Iden + 'static)>>
found signature fn() -> Vec<SeaRc<(dyn Iden + 'static)>>
= note: this error originates in the derive macro modql::field::Fields (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0053]: method sea_column_refs has an incompatible type for trait
--> src/db/test.rs:5:24
|
5 | #[derive(Debug, Clone, modql::field::Fields, FromRow, Serialize)]
| ^^^^^^^^^^^^^^^^^^^^ expected sea_query::types::ColumnRef, found ColumnRef
|
= note: expected signature fn() -> Vec<sea_query::types::ColumnRef>
found signature fn() -> Vec<ColumnRef>
= note: this error originates in the derive macro modql::field::Fields (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0053]: method sea_column_refs_with_rel has an incompatible type for trait
--> src/db/test.rs:5:24
|
5 | #[derive(Debug, Clone, modql::field::Fields, FromRow, Serialize)]
| ^^^^^^^^^^^^^^^^^^^^ expected sea_query::types::ColumnRef, found ColumnRef
|
= note: expected signature fn(_) -> Vec<sea_query::types::ColumnRef>
found signature fn(_) -> Vec<ColumnRef>
= note: this error originates in the derive macro modql::field::Fields (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0277]: the trait bound SIden: IntoIden is not satisfied
--> src/db/test.rs:5:24
|
5 | #[derive(Debug, Clone, modql::field::Fields, FromRow, Serialize)]
| ^^^^^^^^^^^^^^^^^^^^ the trait Iden is not implemented for SIden, which is required by SIden: IntoIden
|
= help: the following other types implement trait Iden:
Alias
MySqlType
NullAlias
PgLTree
= note: required for SIden to implement IntoIden
= note: this error originates in the derive macro modql::field::Fields (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0599]: the method into_iden exists for struct SIden, but its trait bounds were not satisfied
--> src/db/test.rs:5:24
|
5 | #[derive(Debug, Clone, modql::field::Fields, FromRow, Serialize)]
| ^^^^^^^^^^^^^^^^^^^^
|
::: /home/vincent/.cargo/registry/src/index.crates.io-6f17d22bba15001f/modql-0.4.0/src/sea_utils.rs:19:1
|
19 | pub struct SIden(pub &'static str);
| ---------------- doesn't satisfy SIden: Iden or SIden: IntoIden
|
= note: the following trait bounds were not satisfied:
SIden: Iden
which is required by SIden: IntoIden
&SIden: Iden
which is required by &SIden: IntoIden
&mut SIden: Iden
which is required by &mut SIden: IntoIden
= help: items from traits can only be used if the trait is in scope
= note: this error originates in the derive macro modql::field::Fields (in Nightly builds, run with -Z macro-backtrace for more info)
help: trait IntoIden which provides into_iden is implemented but not in scope; perhaps you want to import it
|
1 + use sea_query::types::IntoIden;
|

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant