Struct TokenStream

Source
pub struct TokenStream<'t> { /* private fields */ }

Implementations§

Source§

impl<'t> TokenStream<'t>

Source

pub fn iter(&self) -> TokenStreamIterator<'_>

Source

pub const fn new(slice: &'t [TokenMatch<'t>]) -> Self

Source

pub fn into_token_match(self) -> Option<TokenMatch<'t>>

Source

pub fn token_iter(&self) -> impl Iterator<Item = &Token<'_>>

Source

pub fn len(&self) -> usize

Source

pub fn is_empty(&self) -> bool

Source

pub fn iter_indices(&self) -> TokenStreamIndices<'_>

Source

pub fn iter_elements(&self) -> TokenStreamIterator<'_>

Trait Implementations§

Source§

impl<'t> Clone for TokenStream<'t>

Source§

fn clone(&self) -> TokenStream<'t>

Returns a copy 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<'t> Debug for TokenStream<'t>

Source§

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

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

impl Display for TokenStream<'_>

Source§

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

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

impl Located for TokenStream<'_>

Source§

impl<'t> Original<Token<'t>> for TokenStream<'t>

Source§

fn point_pos(&self, point: impl Into<CodePoint>) -> usize

Source§

fn actual(&self, point: impl Into<CodePoint>) -> Token<'t>

Source§

impl<'t> Parse for TokenStream<'t>

Source§

type PositionRepr = Position

Source§

fn start(&self) -> usize

Source§

fn is_eof(&self, pos: usize) -> bool

Source§

fn position_repr(&self, pos: usize) -> Self::PositionRepr

Source§

impl<'input> ParseElem<'input> for TokenStream<'input>

Source§

type Element = TokenMatch<'input>

Type of a single atomic element of the input, for example a character or token
Source§

fn parse_elem(&'input self, pos: usize) -> RuleResult<Self::Element>

Get the element at pos, or Failed if past end of input.
Source§

impl<'input> ParseLiteral for TokenStream<'input>

Source§

fn parse_string_literal(&self, pos: usize, literal: &str) -> RuleResult<()>

Attempt to match the literal string at pos, returning whether it matched or failed.
Source§

impl<'input> ParseSlice<'input> for TokenStream<'input>

Source§

type Slice = TokenStream<'input>

Type of a slice of the input.
Source§

fn parse_slice(&'input self, p1: usize, p2: usize) -> Self::Slice

Get a slice of input.
Source§

impl<'t> PartialEq for TokenStream<'t>

Source§

fn eq(&self, other: &TokenStream<'t>) -> 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<'t> Copy for TokenStream<'t>

Source§

impl<'t> StructuralPartialEq for TokenStream<'t>

Auto Trait Implementations§

§

impl<'t> Freeze for TokenStream<'t>

§

impl<'t> RefUnwindSafe for TokenStream<'t>

§

impl<'t> Send for TokenStream<'t>

§

impl<'t> Sync for TokenStream<'t>

§

impl<'t> Unpin for TokenStream<'t>

§

impl<'t> UnwindSafe for TokenStream<'t>

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> ConvertibleToMut<U> for T

Source§

fn try_as_mut(&mut self) -> Option<&mut U>

Source§

impl<T, U> ConvertibleToRef<U> for T
where &'a U: for<'a> TryFrom<&'a T>,

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

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