We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi. It seems there's an error for the end position of an inner type. In my code, I get the following error:
error: use of unsupported type name `Option<String>` --> $DIR/sql_table.rs:42:28 | 42 | nested_options: Option<Option<String>>, | ^^^^^^^^^^^^^^^
(There is one extra ^ .) This is an error I generate and the span comes from calling the method span() on a syn::Type. Thanks to fix this issue.
span()
syn::Type
The text was updated successfully, but these errors were encountered:
Thanks, I filed rust-lang/rust#47226 to follow up on the compiler side.
Sorry, something went wrong.
No branches or pull requests
Hi.
It seems there's an error for the end position of an inner type.
In my code, I get the following error:
(There is one extra ^ .)
This is an error I generate and the span comes from calling the method
span()
on asyn::Type
.Thanks to fix this issue.
The text was updated successfully, but these errors were encountered: