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
error[E0658]: let...else statements are unstable --> /home/nathan/.cargo/registry/src/github.com-1ecc6299db9ec823/fields-iter-macros-0.0.1/src/lib.rs:10:5 | 10 | / let syn::Data::Struct(strukt) = item.data else { 11 | | return syn::Error::new_spanned(&item, "only structs are supported for #[derive(FieldsInspect)]") 12 | | .into_compile_error() 13 | | .into(); 14 | | }; | |______^ | = note: see issue #87335 rust-lang/rust#87335 for more information = help: add #![feature(let_else)] to the crate attributes to enable
let...else
#[derive(FieldsInspect)]
#![feature(let_else)]
For more information about this error, try rustc --explain E0658. error: could not compile fields-iter-macros due to previous error
rustc --explain E0658
fields-iter-macros
The text was updated successfully, but these errors were encountered:
You're using an old version of Rust. Try updating it.
Sorry, something went wrong.
No branches or pull requests
error[E0658]:
let...else
statements are unstable--> /home/nathan/.cargo/registry/src/github.com-1ecc6299db9ec823/fields-iter-macros-0.0.1/src/lib.rs:10:5
|
10 | / let syn::Data::Struct(strukt) = item.data else {
11 | | return syn::Error::new_spanned(&item, "only structs are supported for
#[derive(FieldsInspect)]
")12 | | .into_compile_error()
13 | | .into();
14 | | };
| |______^
|
= note: see issue #87335 rust-lang/rust#87335 for more information
= help: add
#![feature(let_else)]
to the crate attributes to enableFor more information about this error, try
rustc --explain E0658
.error: could not compile
fields-iter-macros
due to previous errorThe text was updated successfully, but these errors were encountered: