[][src]Struct oboe::AudioStreamBuilderAsync

pub struct AudioStreamBuilderAsync<D, F> { /* fields omitted */ }

Factory for an audio stream.

Implementations

impl<F: AudioInputCallback + Send> AudioStreamBuilderAsync<Input, F>[src]

pub fn open_stream(self) -> Result<AudioStreamAsync<Input, F>>[src]

Create and open an asynchronous (callback-driven) input stream based on the current settings.

impl<F: AudioOutputCallback + Send> AudioStreamBuilderAsync<Output, F>[src]

pub fn open_stream(self) -> Result<AudioStreamAsync<Output, F>>[src]

Create and open an asynchronous (callback-driven) output stream based on the current settings.

Trait Implementations

impl<D, F> Debug for AudioStreamBuilderAsync<D, F>[src]

Auto Trait Implementations

impl<D, F> RefUnwindSafe for AudioStreamBuilderAsync<D, F> where
    D: RefUnwindSafe,
    F: RefUnwindSafe

impl<D, F> !Send for AudioStreamBuilderAsync<D, F>

impl<D, F> !Sync for AudioStreamBuilderAsync<D, F>

impl<D, F> Unpin for AudioStreamBuilderAsync<D, F> where
    D: Unpin,
    F: Unpin

impl<D, F> UnwindSafe for AudioStreamBuilderAsync<D, F> where
    D: UnwindSafe,
    F: UnwindSafe

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, 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.