pub trait Generator {
    fn write<W>(&self, registry: &Registry, dest: &mut W) -> Result<()>
    where
        W: Write
; }
Expand description

Trait for a webgl bindings generator.

Required Methods

Builds the WebGL bindings.

Implementors