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
Issue: Code generation fails for directly constrained list with indirectly constrained aggregate shapes
When generating code for a model where a list contains a non-constrained map with a constrained key, an error occurs during server-side code generation.
error[E0277]: the trait bound `ItemList:TryFrom<Vec<ItemConstrained>>` is not satisfied
--> src/unconstrained.rs:39:13
|
39 | Self::try_from(inner)
| ^^^^ the trait `From<Vec<ItemConstrained>>` is not implemented for `ItemList`, which is required by `ItemList:TryFrom<Vec<ItemConstrained>>`
|
The text was updated successfully, but these errors were encountered:
Issue: Code generation fails for directly constrained list with indirectly constrained aggregate shapes
When generating code for a model where a list contains a non-constrained map with a constrained key, an error occurs during server-side code generation.
This also happens if the constrained list contains another indirectly constrained list as a member.
Code Generation Error:
The text was updated successfully, but these errors were encountered: