[][src]Struct nannou::app::Audio

pub struct Audio { /* fields omitted */ }

An API accessed via app.audio for enumerating audio devices and spawning input/output audio streams with either default or custom stream format.

Methods

impl Audio[src]

Important traits for Devices
pub fn devices(&self) -> Devices[src]

Enumerate the available audio devices on the system.

Produces an iterator yielding audio::Devices.

Important traits for Devices
pub fn input_devices(&self) -> Devices[src]

Enumerate the available audio devices on the system that support input streams.

Produces an iterator yielding audio::Devices.

Important traits for Devices
pub fn output_devices(&self) -> Devices[src]

Enumerate the available audio devices on the system that support output streams.

Produces an iterator yielding audio::Devices.

pub fn default_input_device(&self) -> Option<Device>[src]

The current default audio input device.

pub fn default_output_device(&self) -> Option<Device>[src]

The current default audio output device.

pub fn new_input_stream<M, F, S>(
    &self,
    model: M,
    capture: F
) -> Builder<M, F, S>
[src]

Begin building a new input audio stream.

If this is the first time a stream has been created, this method will spawn the cpal::EventLoop::run method on its own thread, ready to run built streams.

pub fn new_output_stream<M, F, S>(
    &self,
    model: M,
    render: F
) -> Builder<M, F, S>
[src]

Begin building a new output audio stream.

If this is the first time a stream has been created, this method will spawn the cpal::EventLoop::run method on its own thread, ready to run built streams.

Auto Trait Implementations

impl Send for Audio

impl !Sync for Audio

Blanket Implementations

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.

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

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

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

impl<T> Content for T[src]

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

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.