Skip to main content

Token

Struct Token 

pub struct Token {
    pub type_id: TokenId,
    pub value: CompactString,
    pub start_pos: SentinelOption<u32>,
    pub end_pos: SentinelOption<u32>,
    pub line: SentinelOption<u32>,
    pub end_line: SentinelOption<u32>,
    pub column: SentinelOption<u32>,
    pub end_column: SentinelOption<u32>,
}
Expand description

A lexed token — Lark’s 8 slots. Positions are code points: 0-based *_pos, 1-based line/column. SentinelOption<u32> (4 B each; u32::MAX = position-less) rather than Option<u32> (8 B) — a token can be constructed position-less (callbacks, $END), though the lexer always sets all six. BasicLexer::next_token guards inputs via [input_exceeds_u32] (LexError::InputTooLarge), which reserves u32::MAX, so every position here is provably < u32::MAX and round-trips through the sentinel losslessly.

Fields§

§type_id: TokenId§value: CompactString§start_pos: SentinelOption<u32>§end_pos: SentinelOption<u32>§line: SentinelOption<u32>§end_line: SentinelOption<u32>§column: SentinelOption<u32>§end_column: SentinelOption<u32>

Implementations§

§

impl Token

pub fn synthetic(type_id: TokenId, value: impl Into<CompactString>) -> Self

A position-less token of a given terminal — the shape a binding builds when feeding a token by hand to an interactive parser (Lark’s Token(type, value) with no positions). Lexed tokens always carry positions; a manually-fed token need not, and the interactive engine accepts position-less feeds.

pub fn line(&self) -> u32

1-based line, 0 for a position-less (synthetic) token. The lexer always sets positions, so lexed tokens never hit the sentinel — this is the no-unwrap accessor over the Self::line field (0 is out-of-band precisely because positions are 1-based).

pub fn column(&self) -> u32

1-based column, 0 for a position-less token; see Self::line.

Trait Implementations§

§

impl Clone for Token

§

fn clone(&self) -> Token

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
§

impl Debug for Token

§

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

Formats the value using the given formatter. Read more
§

impl Eq for Token

§

impl PartialEq for Token

§

fn eq(&self, other: &Token) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
§

impl StructuralPartialEq for Token

Auto Trait Implementations§

§

impl Freeze for Token

§

impl RefUnwindSafe for Token

§

impl Send for Token

§

impl Sync for Token

§

impl Unpin for Token

§

impl UnsafeUnpin for Token

§

impl UnwindSafe for Token

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> 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> 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> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

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.