pub trait HasParser: Sized {
type Parser: LangParser<Item = Self>;
}
Expand description
GLSL language parsing capability
Required Associated Types§
sourcetype Parser: LangParser<Item = Self>
type Parser: LangParser<Item = Self>
Type of the parser to create
Object Safety§
This trait is not object safe.