Enum candid::parser::token::Token[][src]

pub enum Token {
Show 36 variants StartComment, UnexpectedToken, Equals, LParen, RParen, LBrace, RBrace, Semi, Comma, Dot, Colon, Arrow, Null, Vec, Record, Variant, Func, Service, Oneway, Query, Blob, Type, Import, Opt, TestEqual, NotEqual, NotDecode, Principal, Id(String), StartString, Text(String), Sign(char), Decimal(String), Hex(String), Float(String), Boolean(bool),
}

Variants

StartComment
UnexpectedToken
Equals
LParen
RParen
LBrace
RBrace
Semi
Comma
Dot
Colon
Arrow
Null
Vec
Record
Variant
Func
Service
Oneway
Query
Blob
Type
Import
Opt
TestEqual
NotEqual
NotDecode
Principal
Id

Tuple Fields of Id

0: String
StartString
Text

Tuple Fields of Text

0: String
Sign

Tuple Fields of Sign

0: char
Decimal

Tuple Fields of Decimal

0: String
Hex

Tuple Fields of Hex

0: String
Float

Tuple Fields of Float

0: String
Boolean

Tuple Fields of Boolean

0: bool

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

Formats the value using the given formatter. Read more

Associated type Extras for the particular lexer. This can be set using #[logos(extras = MyExtras)] and accessed inside callbacks. Read more

Source type this token can be lexed from. This will default to str, unless one of the defined patterns explicitly uses non-unicode byte values or byte slices, in which case that implementation will use [u8]. Read more

Helper const of the variant marked as #[error].

The heart of Logos. Called by the Lexer. The implementation for this function is generated by the logos-derive crate. Read more

Create a new instance of a Lexer that will produce tokens implementing this Logos. Read more

Create a new instance of a Lexer with the provided Extras that will produce tokens implementing this Logos. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

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

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

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.

Should always be Self

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

Converts the given value to a String. 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.