[][src]Struct rodio::Device

pub struct Device(_);

An opaque type that identifies a device that is capable of either audio input or output.

Please note that Devices may become invalid if they get disconnected. Therefore all the methods that involve a device return a Result.

Methods

impl Device[src]

pub fn name(&self) -> String[src]

The human-readable name of the device.

pub fn supported_input_formats(
    &self
) -> Result<SupportedInputFormats, FormatsEnumerationError>
[src]

An iterator yielding formats that are supported by the backend.

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

pub fn supported_output_formats(
    &self
) -> Result<SupportedOutputFormats, FormatsEnumerationError>
[src]

An iterator yielding output stream formats that are supported by the device.

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

pub fn default_input_format(&self) -> Result<Format, DefaultFormatError>[src]

The default input stream format for the device.

pub fn default_output_format(&self) -> Result<Format, DefaultFormatError>[src]

The default output stream format for the device.

Trait Implementations

impl Eq for Device[src]

impl Clone for Device[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Device> for Device[src]

Auto Trait Implementations

impl Send for Device

impl Sync for Device

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>,