Trait glsl_lang_lexer::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::v2_full::str::Lexer<'_>

§

type Error = LexicalError<ProcessStrError>

source§

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

§

type Error = LexicalError<ProcessStrError>

source§

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

source§

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