Struct audio_device::wasapi::InitializedClient[][src]

pub struct InitializedClient<T, E> { /* fields omitted */ }
This is supported on crate feature wasapi only.

A client that has been initialized with the given type T.

The type must implement the Sample trait to make sure it’s appropriate for use with WASAPI.

Implementations

impl<T, E> InitializedClient<T, E> where
    T: Sample
[src]

pub fn config(&self) -> ClientConfig[src]

Get the initialized client configuration.

pub fn render_client(&self) -> Result<RenderClient<T, E>, Error>[src]

Construct a render client used for writing output into.

Trait Implementations

impl<T, E> Send for InitializedClient<T, E>[src]

Auto Trait Implementations

impl<T, E> RefUnwindSafe for InitializedClient<T, E> where
    E: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, E> !Sync for InitializedClient<T, E>

impl<T, E> Unpin for InitializedClient<T, E> where
    T: Unpin

impl<T, E> UnwindSafe for InitializedClient<T, E> where
    E: RefUnwindSafe,
    T: 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<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.