Trait swc_css_parser::parser::input::ParserInput[][src]

pub trait ParserInput {
    type State: Debug;
    fn next(&mut self) -> PResult<TokenAndSpan>;
fn start_pos(&mut self) -> BytePos;
fn state(&mut self) -> Self::State;
fn reset(&mut self, state: &Self::State); }

Associated Types

Required methods

Implementors