Variable: rust-ts-mode--keywords
rust-ts-mode--keywords is a variable defined in rust-ts-mode.el.gz.
Value
("as" "async" "await" "break" "const" "continue" "default" "dyn"
"else" "enum" "extern" "fn" "for" "if" "impl" "in" "let" "loop"
"match" "mod" "move" "pub" "ref" "return" "static" "struct" "trait"
"type" "union" "unsafe" "use" "where" "while" (crate) (self) (super)
(mutable_specifier))
Documentation
Rust keywords for tree-sitter font-locking.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/rust-ts-mode.el.gz
(defvar rust-ts-mode--keywords
'("as" "async" "await" "break" "const" "continue" "default" "dyn" "else"
"enum" "extern" "fn" "for" "if" "impl" "in" "let" "loop" "match"
"mod" "move" "pub" "ref" "return" "static" "struct" "trait" "type"
"union" "unsafe" "use" "where" "while" (crate) (self) (super)
(mutable_specifier))
"Rust keywords for tree-sitter font-locking.")