[][src]Struct nannou_audio::Host

pub struct Host { /* fields omitted */ }

The top-level audio API, for enumerating devices and spawning input/output streams.

Methods

impl Host[src]

pub fn from_id(id: HostId) -> Result<Self, HostUnavailable>[src]

Instantiate the current host for the platform.

pub fn new() -> Self[src]

Initialise the API.

Internally, this creates a new, inactive CPAL event loop ready for stream creation.

The Default implementation for Host calls this constructor internally.

pub fn devices(&self) -> Result<Devices, DevicesError>[src]

Enumerate the available audio devices on the system.

Produces an iterator yielding Devices.

pub fn input_devices(&self) -> Result<Devices, DevicesError>[src]

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

Produces an iterator yielding Devices.

pub fn output_devices(&self) -> Result<Devices, DevicesError>[src]

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

Produces an iterator yielding 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, S>(&self, model: M) -> BuilderInit<M, 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, S>(&self, model: M) -> BuilderInit<M, 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.

Trait Implementations

impl Default for Host[src]

Auto Trait Implementations

impl Sync for Host

impl Unpin for Host

impl Send for Host

impl !UnwindSafe for Host

impl !RefUnwindSafe for Host

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<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]