We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7264731 commit b9b046dCopy full SHA for b9b046d
src/util.rs
@@ -148,10 +148,10 @@ impl ToSanitizedSnakeCase for str {
148
}
149
150
pub fn sanitize_keyword(sc: Cow<str>) -> Cow<str> {
151
- const KEYWORDS: [&str; 54] = [
+ const KEYWORDS: [&str; 55] = [
152
"abstract", "alignof", "as", "async", "await", "become", "box", "break", "const",
153
- "continue", "crate", "do", "else", "enum", "extern", "false", "final", "fn", "for", "if",
154
- "impl", "in", "let", "loop", "macro", "match", "mod", "move", "mut", "offsetof",
+ "continue", "crate", "do", "dyn", "else", "enum", "extern", "false", "final", "fn", "for",
+ "if", "impl", "in", "let", "loop", "macro", "match", "mod", "move", "mut", "offsetof",
155
"override", "priv", "proc", "pub", "pure", "ref", "return", "self", "sizeof", "static",
156
"struct", "super", "trait", "true", "try", "type", "typeof", "unsafe", "unsized", "use",
157
"virtual", "where", "while", "yield",
0 commit comments