pub trait HasParser: Sized {
    type Parser: LangParser<Item = Self>;
}
Expand description

GLSL language parsing capability

Required Associated Types§

source

type Parser: LangParser<Item = Self>

Type of the parser to create

Object Safety§

This trait is not object safe.

Implementors§

source§

impl HasParser for TranslationUnit

§

type Parser = TranslationUnitParser