1
2
3
4
5
6
7
pub fn escape(input: &str) -> String {
    if input == "type" {
        String::from("r#type")
    } else {
        String::from(input)
    }
}