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
Currently, Expr::RawAddr is represented using PointerMutability enum:
Expr::RawAddr
syn/src/expr.rs
Lines 583 to 589 in da478ac
whereas Type::Ptr is represented using separate Option<Token![const]> and Option<Token![mut]> fields.
Type::Ptr
Option<Token![const]>
Option<Token![mut]>
syn/src/ty.rs
Lines 183 to 188 in da478ac
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently,
Expr::RawAddr
is represented using PointerMutability enum:syn/src/expr.rs
Lines 583 to 589 in da478ac
whereas
Type::Ptr
is represented using separateOption<Token![const]>
andOption<Token![mut]>
fields.syn/src/ty.rs
Lines 183 to 188 in da478ac
The text was updated successfully, but these errors were encountered: