gesha_rust_types/
keywords.rs

1/// https://doc.rust-lang.org/reference/keywords.html
2#[rustfmt::skip]
3pub const KEYWORDS: [&str; 38] = [
4    "as",
5    "async",
6    "await",
7    "break",
8    "const",
9    "continue",
10    "crate",
11    "dyn",
12    "else",
13    "enum",
14    "extern",
15    "false",
16    "fn",
17    "for",
18    "if",
19    "impl",
20    "in",
21    "let",
22    "loop",
23    "match",
24    "mod",
25    "move",
26    "mut",
27    "pub",
28    "ref",
29    "return",
30    "self",
31    "Self",
32    "static",
33    "struct",
34    "super",
35    "trait",
36    "true",
37    "type",
38    "unsafe",
39    "use",
40    "where",
41    "while",
42];