Struct oddio::Stream[][src]

pub struct Stream { /* fields omitted */ }

Dynamic audio from an external source

Implementations

impl Stream[src]

pub fn new(rate: u32, size: usize) -> Self[src]

Construct a stream of dynamic audio

Samples can be appended to the stream through its Handle. This allows the business of obtaining streaming audio, e.g. from a streaming decoder or the network, to take place without interfering with the low-latency requirements of audio output.

  • rate is the stream's sample rate
  • size dictates the maximum number of buffered frames

Trait Implementations

impl<'a> Controlled<'a> for Stream[src]

type Control = StreamControl<'a>

The interface through which this signal can be safely controlled

impl Signal for Stream[src]

type Frame = Sample

Type of frames yielded by sample, e.g. [Sample; 2] for stereo

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.