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
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.