pub trait MonitorSource {
    fn copy_to(&self, len: usize, slice: &mut [f32]);
}
Expand description

A trait that represents any kind of monitorable sources that provides at least MAX_BLOCK_SIZE samples.

Required Methods

Implementations on Foreign Types

Implementors