[][src]Enum oboe::AudioFeature

pub enum AudioFeature {
    LowLatency,
    Output,
    Pro,
    Microphone,
    Midi,
}

The Android audio features

Variants

LowLatency
Output
Pro
Microphone
Midi

Implementations

impl AudioFeature[src]

pub fn has(&self) -> Result<bool, String>[src]

Check availability of an audio feature using Android Java API

Trait Implementations

impl Clone for AudioFeature[src]

impl Copy for AudioFeature[src]

impl Debug for AudioFeature[src]

impl Eq for AudioFeature[src]

impl Hash for AudioFeature[src]

impl Into<&'static str> for AudioFeature[src]

impl PartialEq<AudioFeature> for AudioFeature[src]

impl StructuralEq for AudioFeature[src]

impl StructuralPartialEq for AudioFeature[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<'a, T> Desc<'a, T> for T

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.