Struct nannou_audio::device::Device

source ·
pub struct Device { /* private fields */ }
Expand description

A device that can be used to spawn an audio stream.

Implementations§

source§

impl Device

source

pub fn name(&self) -> Result<String, DeviceNameError>

The unique name associated with this device.

source

pub fn supported_input_configs( &self ) -> Result<SupportedInputConfigs, SupportedStreamConfigsError>

An iterator yielding formats that are supported by the backend.

Can return an error if the device is no longer valid (e.g. it has been disconnected).

source

pub fn supported_output_configs( &self ) -> Result<SupportedOutputConfigs, SupportedStreamConfigsError>

An iterator yielding configs that are supported by the backend.

Can return an error if the device is no longer valid (e.g. it has been disconnected).

source

pub fn default_input_config( &self ) -> Result<SupportedStreamConfig, DefaultStreamConfigError>

The default config used for input streams.

source

pub fn default_output_config( &self ) -> Result<SupportedStreamConfig, DefaultStreamConfigError>

The default config used for output streams.

source

pub fn max_supported_output_channels(&self) -> usize

The maximum number of output channels of any format supported by this device.

source

pub fn max_supported_input_channels(&self) -> usize

The maximum number of input channels of any format supported by this device.

Trait Implementations§

source§

impl Deref for Device

§

type Target = Device

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Device

§

impl Send for Device

§

impl Sync for Device

§

impl Unpin for Device

§

impl UnwindSafe for Device

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<S> FromSample<S> for S

source§

fn from_sample_(s: S) -> S

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> ToSample<U> for T
where U: FromSample<T>,

source§

fn to_sample_(self) -> U

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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