Enum erl_tokenize::values::Keyword [] [src]

pub enum Keyword {
    After,
    And,
    Andalso,
    Band,
    Begin,
    Bnot,
    Bor,
    Bsl,
    Bsr,
    Bxor,
    Case,
    Catch,
    Cond,
    Div,
    End,
    Fun,
    If,
    Let,
    Not,
    Of,
    Or,
    Orelse,
    Receive,
    Rem,
    Try,
    When,
    Xor,
}

Keyword (a.k.a., reserved word).

Reference: Erlang's Reserved Words

Variants

after

and

andalso

band

begin

bnot

bor

bsl

bsr

bxor

case

catch

cond

div

end

fun

if

let

not

of

or

orelse

receive

rem

try

when

xor

Methods

impl Keyword
[src]

Returns the string representation of this keyword.

Trait Implementations

impl Debug for Keyword
[src]

Formats the value using the given formatter.

impl Clone for Keyword
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Keyword
[src]

impl PartialEq for Keyword
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Keyword
[src]

impl Hash for Keyword
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more