codegen 0.2.0

Library for generating Rust code
Documentation
const KW_AS: &str = "as";
const KW_BREAK: &str = "break";
const KW_CONST: &str = "const";
const KW_CONTINUE: &str = "continue";
const KW_CRATE: &str = "crate";
const KW_ELSE: &str = "else";
const KW_ENUM: &str = "enum";
const KW_EXTERN: &str = "extern";
const KW_FALSE: &str = "false";
const KW_FN: &str = "fn";
const KW_FOR: &str = "for";
const KW_IF: &str = "if";
const KW_IMPL: &str = "impl";
const KW_IN: &str = "in";
const KW_LET: &str = "let";
const KW_LOOP: &str = "loop";
const KW_MATCH: &str = "match";
const KW_MOD: &str = "mod";
const KW_MOVE: &str = "move";
const KW_MUT: &str = "mut";
const KW_PUB: &str = "pub";
const KW_REF: &str = "ref";
const KW_RETURN: &str = "return";
const KW_SELFVALUE: &str = "self";
const KW_SELFTYPE: &str = "Self";
const KW_STATIC: &str = "static";
const KW_STRUCT: &str = "struct";
const KW_SUPER: &str = "super";
const KW_TRAIT: &str = "trait";
const KW_TRUE: &str = "true";
const KW_TYPE: &str = "type";
const KW_UNSAFE: &str = "unsafe";
const KW_USE: &str = "use";
const KW_WHERE: &str = "where";
const KW_WHILE: &str = "while";

const KEYWORDS_STRICT: [&str] = [
    KW_AS,
    KW_BREAK,
    KW_CONST,
    KW_CONTINUE,
    KW_CRATE,
    KW_ELSE,
    KW_ENUM,
    KW_EXTERN,
    KW_FALSE,
    KW_FN,
    KW_FOR,
    KW_IF,
    KW_IMPL,
    KW_IN,
    KW_LET,
    KW_LOOP,
    KW_MATCH,
    KW_MOD,
    KW_MOVE,
    KW_MUT,
    KW_PUB,
    KW_REF,
    KW_RETURN,
    KW_SELFVALUE,
    KW_SELFTYPE,
    KW_STATIC,
    KW_STRUCT,
    KW_SUPER,
    KW_TRAIT,
    KW_TRUE,
    KW_TYPE,
    KW_UNSAFE,
    KW_USE,
    KW_WHERE,
    KW_WHILE,
];