Struct Token

Source
pub struct Token<'a, K: TokenKind> {
    pub kind: K,
    pub start: usize,
    pub end: usize,
    pub text: &'a str,
    pub skip: bool,
    pub next: Option<Box<Token<'a, K>>>,
    pub skipped: Vec<Token<'a, K>>,
    pub captures: Option<Vec<Option<(usize, usize)>>>,
}
Expand description

Represents a detected token

Fields§

§kind: K§start: usize§end: usize§text: &'a str§skip: bool§next: Option<Box<Token<'a, K>>>

In some cases (viz. when an “unrecognized” token is returned), whatever token comes next is cached here.

§skipped: Vec<Token<'a, K>>

The tokens skipped over to get here.

§captures: Option<Vec<Option<(usize, usize)>>>

Implementations§

Source§

impl<'a, K: TokenKind> Token<'a, K>

Source

pub fn new(source: &'a str, kind: K, start: usize, end: usize) -> Token<'a, K>

Source

pub fn from_text(kind: K, text: &'a str, start: usize) -> Token<'a, K>

Source

pub fn eof(source: &'a str) -> Token<'a, K>

Source

pub fn skip(self, skip: bool) -> Self

Source

pub fn skipped(self, skipped: Vec<Token<'a, K>>) -> Self

Source

pub fn next(self, next: Option<Box<Token<'a, K>>>) -> Self

Source

pub fn captures(self, captures: Option<Vec<Option<(usize, usize)>>>) -> Self

Source

pub fn get_capture(&self, idx: usize) -> Option<TokenCapture<'a>>

Trait Implementations§

Source§

impl<'a, K: Debug + TokenKind> Debug for Token<'a, K>

Source§

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

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

impl<'a, K: PartialEq + TokenKind> PartialEq for Token<'a, K>

Source§

fn eq(&self, other: &Token<'a, K>) -> 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<'a, K: TokenKind> StructuralPartialEq for Token<'a, K>

Auto Trait Implementations§

§

impl<'a, K> Freeze for Token<'a, K>
where K: Freeze,

§

impl<'a, K> RefUnwindSafe for Token<'a, K>
where K: RefUnwindSafe,

§

impl<'a, K> Send for Token<'a, K>
where K: Send,

§

impl<'a, K> Sync for Token<'a, K>
where K: Sync,

§

impl<'a, K> Unpin for Token<'a, K>
where K: Unpin,

§

impl<'a, K> UnwindSafe for Token<'a, K>
where K: UnwindSafe,

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> 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, 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.