syn
syn copied to clipboard
Use PointerMutability inside Type::Ptr
Currently, Expr::RawAddr is represented using PointerMutability enum:
https://github.com/dtolnay/syn/blob/da478ac46f202e69e7589c85123dcf8d0dde64be/src/expr.rs#L583-L589
whereas Type::Ptr is represented using separate Option<Token![const]> and Option<Token![mut]> fields.
https://github.com/dtolnay/syn/blob/da478ac46f202e69e7589c85123dcf8d0dde64be/src/ty.rs#L183-L188