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
Thanks for creating such an awesome module
Any idea how to fix this compilation error?
error: enum variants on type aliases are experimental --> src/format/cell.rs:103:9 | 103 | Self::Left | ^^^^^^^^^^ error: enum variants on type aliases are experimental --> src/format/cell.rs:121:9 | 121 | Self::Top |
The text was updated successfully, but these errors were encountered:
Hi @nitaigao,
May I know the version of rust compiler are you using? Type aliases for enum variants were stabilised in 1.37.0
rust-lang/rust#61682
You can try running rustup update and then compile the code.
rustup update
Let me know if you continue to face this issue after updating Rust version.
Sorry, something went wrong.
Thanks @devashishdxt. You were totally right, i had an old version of rust installed.
Many thanks for the detailed reply and sorry for the hassle.
No branches or pull requests
Thanks for creating such an awesome module
Any idea how to fix this compilation error?
The text was updated successfully, but these errors were encountered: