Skip to main content

NormalToken

Enum NormalToken 

Source
pub enum NormalToken<'input> {
Show 167 variants Error, Identifier(&'input str), DecNumLiteral(Number), HexNumLiteral(Number), OctNumLiteral(Number), BinNumLiteral(Number), RawEnumTag(&'input str), StrEnumTagBegin, Dyn, Number, Bool, String, Array, If, Then, Else, Forall, In, Let, Rec, Match, Null, True, False, Or, As, Include, QuestionMark, Comma, Semicolon, Colon, Dollar, Equals, NotEquals, Ampersand, Dot, DoubleQuote, Plus, Minus, Times, Div, Percent, DoublePlus, DoubleEq, At, DoubleAnd, DoublePipe, Bang, Ellipsis, Fun, Import, Pipe, RightPipe, SimpleArrow, DoubleArrow, Underscore, MultiStringStart(usize), SymbolicStringStart(SymbolicStringStart<'input>), Typeof, Cast, ContractApply, ContractCheck, ContractArrayLazyApp, ContractRecordLazyApp, ContractCustom, Blame, LabelFlipPol, LabelPol, LabelGoDom, LabelGoCodom, LabelGoField, LabelGoArray, LabelGoDict, LabelInsertTypeVar, LabelLookupTypeVar, Seal, Unseal, EnumEmbed, RecordMap, RecordInsert, RecordInsertWithOpts, RecordRemove, RecordRemoveWithOpts, RecordEmptyWithTail, RecordSealTail, RecordUnsealTail, Seq, DeepSeq, OpForce, ArrayLength, RecordFields, RecordFieldsWithOpts, RecordValues, NumberArcCos, NumberArcSin, NumberArcTan, NumberArcTan2, NumberCos, NumberSin, NumberTan, NumberLog, Pow, Trace, RecordHasField, RecordHasFieldWithOpts, ArrayMap, ArrayAt, ArrayGen, OpRecForce, OpRecDefault, RecordFieldIsDefined, RecordFieldIsDefinedWithOpts, RecordSplitPair, RecordDisjointMerge, RecordMergeContract, RecordFreeze, Default, Doc, Optional, Priority, Force, NotExported, OpHash, Serialize, Deserialize, StringSplit, StringTrim, StringChars, StringUppercase, StringLowercase, StringContains, StringCompare, StringReplace, StringReplaceRegex, StringIsMatch, StringFind, StringFindAll, StringLength, StringSubstr, StringBase64Encode, StringBase64Decode, ToString, NumberFromString, EnumFromString, EnumGetArg, EnumMakeVariant, EnumIsVariant, EnumGetTag, LabelWithMessage, LabelWithNotes, LabelAppendNote, LabelPushDiag, ArraySlice, EvalNix, LBrace, RBrace, LBracket, RBracket, LParen, RParen, LAngleBracket, LessOrEq, RAngleBracket, GreaterOrEq, EnumOpen, EnumClose, LineComment,
}
Expand description

The tokens in normal mode.

Variants§

§

Error

§

Identifier(&'input str)

§

DecNumLiteral(Number)

§

HexNumLiteral(Number)

§

OctNumLiteral(Number)

§

BinNumLiteral(Number)

§

RawEnumTag(&'input str)

§

StrEnumTagBegin

§

Dyn

§

Number

§

Bool

§

String

§

Array

§

If

§

Then

§

Else

§

Forall

§

In

§

Let

§

Rec

§

Match

§

Null

§

True

§

False

§

Or

Or isn’t a reserved keyword. It is a contextual keyword (a keyword that can be used as an identifier because it’s not ambiguous) within patterns.

§

As

As isn’t a reserved keyword. It is a contextual keyword (a keyword that can be used as an identifier because it’s not ambiguous) within the import xxx as yyy construct.

§

Include

Include isn’t a reserved keyword either. It is a contextual keyword (a keyword that can be used as an identifier because it’s not ambiguous) within a record literal.

§

QuestionMark

§

Comma

§

Semicolon

§

Colon

§

Dollar

§

Equals

§

NotEquals

§

Ampersand

§

Dot

§

DoubleQuote

§

Plus

§

Minus

§

Times

§

Div

§

Percent

§

DoublePlus

§

DoubleEq

§

At

§

DoubleAnd

§

DoublePipe

§

Bang

§

Ellipsis

§

Fun

§

Import

§

Pipe

§

RightPipe

§

SimpleArrow

§

DoubleArrow

§

Underscore

§

MultiStringStart(usize)

§

SymbolicStringStart(SymbolicStringStart<'input>)

§

Typeof

§

Cast

§

ContractApply

§

ContractCheck

§

ContractArrayLazyApp

§

ContractRecordLazyApp

§

ContractCustom

§

Blame

§

LabelFlipPol

§

LabelPol

§

LabelGoDom

§

LabelGoCodom

§

LabelGoField

§

LabelGoArray

§

LabelGoDict

§

LabelInsertTypeVar

§

LabelLookupTypeVar

§

Seal

§

Unseal

§

EnumEmbed

§

RecordMap

§

RecordInsert

§

RecordInsertWithOpts

§

RecordRemove

§

RecordRemoveWithOpts

§

RecordEmptyWithTail

§

RecordSealTail

§

RecordUnsealTail

§

Seq

§

DeepSeq

§

OpForce

§

ArrayLength

§

RecordFields

§

RecordFieldsWithOpts

§

RecordValues

§

NumberArcCos

§

NumberArcSin

§

NumberArcTan

§

NumberArcTan2

§

NumberCos

§

NumberSin

§

NumberTan

§

NumberLog

§

Pow

§

Trace

§

RecordHasField

§

RecordHasFieldWithOpts

§

ArrayMap

§

ArrayAt

§

ArrayGen

§

OpRecForce

§

OpRecDefault

§

RecordFieldIsDefined

§

RecordFieldIsDefinedWithOpts

§

RecordSplitPair

§

RecordDisjointMerge

§

RecordMergeContract

§

RecordFreeze

§

Default

§

Doc

§

Optional

§

Priority

§

Force

§

NotExported

§

OpHash

§

Serialize

§

Deserialize

§

StringSplit

§

StringTrim

§

StringChars

§

StringUppercase

§

StringLowercase

§

StringContains

§

StringCompare

§

StringReplace

§

StringReplaceRegex

§

StringIsMatch

§

StringFind

§

StringFindAll

§

StringLength

§

StringSubstr

§

StringBase64Encode

§

StringBase64Decode

§

ToString

§

NumberFromString

§

EnumFromString

§

EnumGetArg

§

EnumMakeVariant

§

EnumIsVariant

§

EnumGetTag

§

LabelWithMessage

§

LabelWithNotes

§

LabelAppendNote

§

LabelPushDiag

§

ArraySlice

§

EvalNix

§

LBrace

§

RBrace

§

LBracket

§

RBracket

§

LParen

§

RParen

§

LAngleBracket

§

LessOrEq

§

RAngleBracket

§

GreaterOrEq

§

EnumOpen

§

EnumClose

§

LineComment

Trait Implementations§

Source§

impl<'input> Clone for NormalToken<'input>

Source§

fn clone(&self) -> NormalToken<'input>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'input> Debug for NormalToken<'input>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'s> Logos<'s> for NormalToken<'s>

Source§

type Error = ()

Error type returned by the lexer. This can be set using #[logos(error = MyError)]. Defaults to () if not set.
Source§

type Extras = ()

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

type Source = str

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].
Source§

fn lex( lex: &mut Lexer<'s, Self>, ) -> Option<Result<Self, <Self as Logos<'s>>::Error>>

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

fn lexer(source: &'source Self::Source) -> Lexer<'source, Self>
where Self::Extras: Default,

Create a new instance of a Lexer that will produce tokens implementing this Logos.
Source§

fn lexer_with_extras( source: &'source Self::Source, extras: Self::Extras, ) -> Lexer<'source, Self>

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

impl<'input> PartialEq for NormalToken<'input>

Source§

fn eq(&self, other: &NormalToken<'input>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'input> StructuralPartialEq for NormalToken<'input>

Auto Trait Implementations§

§

impl<'input> Freeze for NormalToken<'input>

§

impl<'input> RefUnwindSafe for NormalToken<'input>

§

impl<'input> Send for NormalToken<'input>

§

impl<'input> Sync for NormalToken<'input>

§

impl<'input> Unpin for NormalToken<'input>

§

impl<'input> UnsafeUnpin for NormalToken<'input>

§

impl<'input> UnwindSafe for NormalToken<'input>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T, U> ExactFrom<T> for U
where U: TryFrom<T>,

Source§

fn exact_from(value: T) -> U

Source§

impl<T, U> ExactInto<U> for T
where U: ExactFrom<T>,

Source§

fn exact_into(self) -> U

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T, U> OverflowingInto<U> for T
where U: OverflowingFrom<T>,

Source§

impl<T, U> RoundingInto<U> for T
where U: RoundingFrom<T>,

Source§

impl<T, U> SaturatingInto<U> for T
where U: SaturatingFrom<T>,

Source§

impl<T> ToDebugString for T
where T: Debug,

Source§

fn to_debug_string(&self) -> String

Returns the String produced by Ts Debug implementation.

§Examples
use malachite_base::strings::ToDebugString;

assert_eq!([1, 2, 3].to_debug_string(), "[1, 2, 3]");
assert_eq!(
    [vec![2, 3], vec![], vec![4]].to_debug_string(),
    "[[2, 3], [], [4]]"
);
assert_eq!(Some(5).to_debug_string(), "Some(5)");
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryConvert<'_, T> for U
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

Source§

fn try_convert( _: &AstAlloc, from: T, ) -> Result<U, <U as TryConvert<'_, T>>::Error>

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T, U> WrappingInto<U> for T
where U: WrappingFrom<T>,

Source§

fn wrapping_into(self) -> U