pub type BuilderInit<M, S = f32> = Builder<M, DefaultRenderFn<M, S>, DefaultErrorFn<M>, S>;
Expand description

The builder when first initialised.

Aliased Type§

struct BuilderInit<M, S = f32> {
    pub builder: Builder<M, S>,
    pub render: fn(_: &mut M, _: &mut Buffer<S>),
    pub error: fn(_: &mut M, _: StreamError),
}

Fields§

§builder: Builder<M, S>§render: fn(_: &mut M, _: &mut Buffer<S>)§error: fn(_: &mut M, _: StreamError)