Struct audio_device_windows_sys::Windows::Win32::CoreAudio::MCI_WAVE_SET_PARMS[][src]

#[repr(C, packed(1))]pub struct MCI_WAVE_SET_PARMS {
    pub dwCallback: usize,
    pub dwTimeFormat: u32,
    pub dwAudio: u32,
    pub wInput: u32,
    pub wOutput: u32,
    pub wFormatTag: u16,
    pub wReserved2: u16,
    pub nChannels: u16,
    pub wReserved3: u16,
    pub nSamplesPerSec: u32,
    pub nAvgBytesPerSec: u32,
    pub nBlockAlign: u16,
    pub wReserved4: u16,
    pub wBitsPerSample: u16,
    pub wReserved5: u16,
}

Fields

dwCallback: usizedwTimeFormat: u32dwAudio: u32wInput: u32wOutput: u32wFormatTag: u16wReserved2: u16nChannels: u16wReserved3: u16nSamplesPerSec: u32nAvgBytesPerSec: u32nBlockAlign: u16wReserved4: u16wBitsPerSample: u16wReserved5: u16

Trait Implementations

impl Abi for MCI_WAVE_SET_PARMS[src]

type Abi = Self

The abi representation of the implementing type. Read more

impl Clone for MCI_WAVE_SET_PARMS[src]

impl Copy for MCI_WAVE_SET_PARMS[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<'a, T> IntoParam<'a, T> for T where
    T: Abi
[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.