[][src]Struct beryllium::DefaultAudioQueueRequest

pub struct DefaultAudioQueueRequest {
    pub frequency: i32,
    pub format: AudioFormat,
    pub channels: u8,
    pub samples: u16,
    pub allow_frequency_change: bool,
    pub allow_format_change: bool,
    pub allow_channels_change: bool,
}

Specifies a request to open an audio queue.

Fields

frequency: i32

Samples per second

format: AudioFormat

Sample data format.

channels: u8

Number of channels. Supported values are 1, 2, 4, or 6.

samples: u16

Must be a power of 2.

allow_frequency_change: bool

Allow the audio device you get to have a different frequency

allow_format_change: bool

Allow the audio device you get to have a different format

allow_channels_change: bool

Allow the audio device you get to have a different channel count

Trait Implementations

impl Clone for DefaultAudioQueueRequest[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for DefaultAudioQueueRequest[src]

impl Debug for DefaultAudioQueueRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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