Struct swc_ecma_parser::Capturing[][src]

pub struct Capturing<I: Tokens> { /* fields omitted */ }

Note: Lexer need access to parser's context to lex correctly.

Implementations

impl<I: Tokens> Capturing<I>[src]

pub fn new(input: I) -> Self[src]

pub fn take(&mut self) -> Vec<TokenAndSpan>[src]

Take captured tokens

Trait Implementations

impl<I: Tokens> Clone for Capturing<I>[src]

impl<I: Debug + Tokens> Debug for Capturing<I>[src]

impl<I: Tokens> Iterator for Capturing<I>[src]

type Item = TokenAndSpan

The type of the elements being iterated over.

impl<I: Tokens> Tokens for Capturing<I>[src]

Auto Trait Implementations

impl<I> !RefUnwindSafe for Capturing<I>

impl<I> !Send for Capturing<I>

impl<I> !Sync for Capturing<I>

impl<I> Unpin for Capturing<I> where
    I: Unpin

impl<I> !UnwindSafe for Capturing<I>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<It> IdentifyLast for It where
    It: Iterator
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorExt for I where
    I: Iterator
[src]

impl<T> Node for T where
    T: Any + ?Sized
[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.