Trait HasLexerError

Source
pub trait HasLexerError {
    type Error: LexicalError;
}
Expand description

Language lexer error definition

Required Associated Types§

Source

type Error: LexicalError

Type of lexical analysis error

Implementors§

Source§

impl HasLexerError for glsl_lang_lexer::full::str::Lexer<'_>

Source§

type Error = LexicalError<ProcessStrError>

Source§

impl HasLexerError for glsl_lang_lexer::full::str::LexerIterator<'_>

Source§

type Error = LexicalError<ProcessStrError>

Source§

impl HasLexerError for glsl_lang_lexer::min::str::Lexer<'_>

Source§

impl HasLexerError for glsl_lang_lexer::min::str::LexerIterator<'_>

Source§

impl<F: FileSystem> HasLexerError for glsl_lang_lexer::full::fs::Lexer<'_, '_, F>

Source§

impl<F: FileSystem> HasLexerError for glsl_lang_lexer::full::fs::LexerIterator<'_, '_, F>