Struct nannou::audio::stream::Builder[][src]

pub struct Builder<M, S = f32> {
    pub model: M,
    pub sample_rate: Option<u32>,
    pub channels: Option<usize>,
    pub frames_per_buffer: Option<usize>,
    pub device: Option<Device>,
    // some fields omitted
}

Stream building parameters that are common between input and output streams.

Fields

Auto Trait Implementations

impl<M, S> Send for Builder<M, S> where
    M: Send,
    S: Send

impl<M, S = f32> !Sync for Builder<M, S>