Trait HasParser

Source
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

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.

Implementors§