Enum rhai::Token[][src]

pub enum Token {
Show 84 variants IntegerConstant(INT), FloatConstant(FloatWrapper<FLOAT>), DecimalConstant(Decimal), Identifier(String), CharConstant(char), StringConstant(String), InterpolatedString(String), LeftBrace, RightBrace, LeftParen, RightParen, LeftBracket, RightBracket, Plus, UnaryPlus, Minus, UnaryMinus, Multiply, Divide, Modulo, PowerOf, LeftShift, RightShift, SemiColon, Colon, DoubleColon, DoubleArrow, Underscore, Comma, Period, MapStart, Equals, True, False, Let, Const, If, Else, Switch, Do, While, Until, Loop, For, In, LessThan, GreaterThan, LessThanEqualsTo, GreaterThanEqualsTo, EqualsTo, NotEqualsTo, Bang, Pipe, Or, XOr, Ampersand, And, Fn, Continue, Break, Return, Throw, Try, Catch, PlusAssign, MinusAssign, MultiplyAssign, DivideAssign, LeftShiftAssign, RightShiftAssign, AndAssign, OrAssign, XOrAssign, ModuloAssign, PowerOfAssign, Private, Import, Export, As, LexError(LexError), Comment(String), Reserved(String), Custom(String), EOF,
}
Expand description

(internals) A Rhai language token. Exported under the internals feature only.

Volatile Data Structure

This type is volatile and may change.

Variants

IntegerConstant(INT)

An INT constant.

Tuple Fields of IntegerConstant

0: INT
FloatConstant(FloatWrapper<FLOAT>)

A FLOAT constant.

Reserved under the no_float feature.

Tuple Fields of FloatConstant

0: FloatWrapper<FLOAT>
DecimalConstant(Decimal)

A Decimal constant.

Requires the decimal feature.

Tuple Fields of DecimalConstant

0: Decimal
Identifier(String)

An identifier.

Tuple Fields of Identifier

0: String
CharConstant(char)

A character constant.

Tuple Fields of CharConstant

0: char
StringConstant(String)

A string constant.

Tuple Fields of StringConstant

0: String
InterpolatedString(String)

An interpolated string.

Tuple Fields of InterpolatedString

0: String
LeftBrace

{

RightBrace

}

LeftParen

(

RightParen

)

LeftBracket

[

RightBracket

]

Plus

+

UnaryPlus

+ (unary)

Minus

-

UnaryMinus

- (unary)

Multiply

*

Divide

/

Modulo

%

PowerOf

**

LeftShift

<<

RightShift

>>

SemiColon

;

Colon

:

DoubleColon

::

DoubleArrow

=>

Underscore

_

Comma

,

Period

.

MapStart

#{

Equals

=

True

true

False

false

Let

let

Const

const

If

if

Else

else

Switch

switch

Do

do

While

while

Until

until

Loop

loop

For

for

In

in

LessThan

<

GreaterThan

>

LessThanEqualsTo

<=

GreaterThanEqualsTo

>=

EqualsTo

==

NotEqualsTo

!=

Bang

!

Pipe

|

Or

||

XOr

^

Ampersand

&

And

&&

Fn

fn

Reserved under the no_function feature.

Continue

continue

Break

break

Return

return

Throw

throw

Try

try

Catch

catch

PlusAssign

+=

MinusAssign

-=

MultiplyAssign

*=

DivideAssign

/=

LeftShiftAssign

<<=

RightShiftAssign

>>=

AndAssign

&=

OrAssign

|=

XOrAssign

^=

ModuloAssign

%=

PowerOfAssign

**=

Private

private

Reserved under the no_function feature.

Import

import

Reserved under the no_module feature.

Export

export

Reserved under the no_module feature.

As

as

Reserved under the no_module feature.

LexError(LexError)

A lexer error.

Tuple Fields of LexError

0: LexError
Comment(String)

A comment block.

Tuple Fields of Comment

0: String
Reserved(String)

A reserved symbol.

Tuple Fields of Reserved

0: String
Custom(String)

A custom keyword.

Tuple Fields of Custom

0: String
EOF

End of the input stream.

Implementations

Get the syntax of the token if it is a keyword.

Get the syntax of the token.

Is this token an op-assignment operator?

Get the corresponding operator of the token if it is an op-assignment operator.

Has this token a corresponding op-assignment operator?

Get the corresponding op-assignment operator of the token.

Reverse lookup a token from a piece of syntax.

Get the precedence number of the token.

Does an expression bind to the right (instead of left)?

Is this token a standard symbol used in the language?

Is this token an active standard keyword?

Is this token a reserved symbol?

Is this token a custom keyword?

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

Feeds this value into the given Hasher. Read more

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

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.