[][src]Struct miniaudio::WaveformConfig

#[repr(transparent)]pub struct WaveformConfig(_);

Methods

impl WaveformConfig[src]

pub fn new(
    format: Format,
    channels: u32,
    sample_rate: u32,
    waveform_type: WaveformType,
    amplitude: f64,
    frequency: f64
) -> WaveformConfig
[src]

pub fn format(&self) -> Format[src]

pub fn set_format(&mut self, format: Format)[src]

pub fn channels(&self) -> u32[src]

pub fn set_channels(&mut self, channels: u32)[src]

pub fn sample_rate(&self) -> u32[src]

pub fn set_sample_rate(&mut self, sample_rate: u32)[src]

pub fn waveform_type(&self) -> WaveformType[src]

pub fn amplitude(&self) -> f64[src]

pub fn set_amplitude(&mut self, amplitude: f64)[src]

pub fn frequency(&self) -> f64[src]

pub fn set_frequency(&mut self, frequency: f64)[src]

Trait Implementations

impl Clone for WaveformConfig[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.