pub type BuilderInit<M, S = f32> = Builder<M, DefaultCaptureFn<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 capture: fn(_: &mut M, _: &Buffer<S>),
    pub error: fn(_: &mut M, _: StreamError),
}

Fields§

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