[][src]Enum audir::StreamMode

pub enum StreamMode {
    Polling,
    Callback,
}

Device stream operation mode.

Variants

Polling

Explicit polling.

Users need to manually execute submit_buffers to poll the stream buffers. The users are also in control of the audio session in which the stream will be processed.

Callback

Callback based stream.

The device internally poll the stream buffers. Audio sessions are automatically created and maintained. The execution context of the stream callback is hidden from the users.

Trait Implementations

impl Clone for StreamMode[src]

impl Copy for StreamMode[src]

impl Debug for StreamMode[src]

impl Eq for StreamMode[src]

impl PartialEq<StreamMode> for StreamMode[src]

impl StructuralEq for StreamMode[src]

impl StructuralPartialEq for StreamMode[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<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.