[−][src]Struct rodio::Device
An opaque type that identifies a device that is capable of either audio input or output.
Please note that Device
s 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]
&self
) -> Result<SupportedInputFormats, FormatsEnumerationError>
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]
&self
) -> Result<SupportedOutputFormats, FormatsEnumerationError>
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(&self) -> 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 Unpin for Device
impl Sync for Device
impl Send for Device
impl UnwindSafe for Device
impl RefUnwindSafe for Device
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[src]
SS: SubsetOf<SP>,