pub fn make_field_ident(name: &str) -> IdentExpand description
Create a field identifier, escaping Rust keywords.
Most keywords use raw identifiers (r#type). The keywords self, super,
Self, crate cannot be raw identifiers and are suffixed with _ instead
(e.g. self_), matching prost’s convention.