You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've spent some time trying to understand what's going on but without much luck since I don't really know the intention of the types.
error[E0053]: method `sea_idens` has an incompatible typefor trait
--> src/model/user.rs:5:24
|
5 |#[derive(Debug, Clone, Fields, FromRow)]| ^^^^^^ 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 `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/model/user.rs:5:24 |5 | #[derive(Debug, Clone, Fields, FromRow)] | ^^^^^^ 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 `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/model/user.rs:5:24 |5 | #[derive(Debug, Clone, Fields, FromRow)] | ^^^^^^ 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 `Fields` (in Nightly builds, run with -Z macro-backtrace for more info)error[E0277]: the trait bound `SIden: IntoIden` is not satisfied --> src/model/user.rs:5:24 |5 | #[derive(Debug, Clone, Fields, FromRow)] | ^^^^^^ 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 sea_query::extension::postgres::PgLTree = note: required for `SIden` to implement `IntoIden` = note: this error originates in the derive macro `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/model/user.rs:5:24 |5 | #[derive(Debug, Clone, Fields, FromRow)] | ^^^^^^ | ::: /Users/chetan/.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 `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; |
Above is an example trace. Note that importing sea_query::types::IntoIden; does nothing.
The text was updated successfully, but these errors were encountered:
Just wanted to update this with the information that this only takes place with sea-query 0.32. I also noticed that if you don't mark the inner fields pub in 0.31 for the structure on which you're trying to call the derive macro results in the same issue.
I'd be happy to help, but couldn't understand what's causing this.
I've spent some time trying to understand what's going on but without much luck since I don't really know the intention of the types.
Above is an example trace. Note that importing
sea_query::types::IntoIden;
does nothing.The text was updated successfully, but these errors were encountered: