Trait quoted_string::spec::ParsingImpl[][src]

pub trait ParsingImpl: Copy + Eq + Debug {
    fn can_be_quoted(bch: PartialCodePoint) -> bool;
fn handle_normal_state(
        bch: PartialCodePoint
    ) -> Result<(State<Self>, bool), CoreError>; fn advance(
        &self,
        _pcp: PartialCodePoint
    ) -> Result<(State<Self>, bool), CoreError> { ... } }

This normally zero sized type provides functions for parsing a quoted string

Required Methods

Provided Methods

Implementors