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

GLSL language parsing capability

Required Associated Types

Type of the parser to create

Implementors