Struct wasapi::WaveFormat

source ·
pub struct WaveFormat {
    pub wave_fmt: WAVEFORMATEXTENSIBLE,
}
Expand description

Struct wrapping a WAVEFORMATEXTENSIBLE format descriptor.

Fields§

§wave_fmt: WAVEFORMATEXTENSIBLE

Implementations§

source§

impl WaveFormat

source

pub fn new( storebits: usize, validbits: usize, sample_type: &SampleType, samplerate: usize, channels: usize, channel_mask: Option<u32>, ) -> Self

Build a WAVEFORMATEXTENSIBLE struct for the given parameters. channel_mask is optional. If a mask is provided, it will be used. If not, a default mask will be created. This can be used to work around quirks for some device drivers. If the default is not accepted, try again using a zero mask, Some(0).

source

pub fn from_waveformatex(wavefmt: WAVEFORMATEX) -> Result<Self, Box<dyn Error>>

Create from a WAVEFORMATEX structure

source

pub fn to_waveformatex(&self) -> Result<Self, Box<dyn Error>>

Return a copy in the simpler WAVEFORMATEX format.

source

pub fn as_waveformatex_ref(&self) -> &WAVEFORMATEX

get a reference of type &WAVEFORMATEX, used internally

source

pub fn get_blockalign(&self) -> u32

Read nBlockAlign.

source

pub fn get_avgbytespersec(&self) -> u32

Read nAvgBytesPerSec.

source

pub fn get_bitspersample(&self) -> u16

Read wBitsPerSample.

source

pub fn get_validbitspersample(&self) -> u16

Read wValidBitsPerSample.

source

pub fn get_samplespersec(&self) -> u32

Read nSamplesPerSec.

source

pub fn get_nchannels(&self) -> u16

Read nChannels.

source

pub fn get_dwchannelmask(&self) -> u32

Read dwChannelMask.

source

pub fn get_subformat(&self) -> Result<SampleType, Box<dyn Error>>

Read SubFormat.

Trait Implementations§

source§

impl Clone for WaveFormat

source§

fn clone(&self) -> WaveFormat

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for WaveFormat

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.