[][src]Struct miniaudio::band_pass_filtering::BPFConfig

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

Implementations

impl BPFConfig[src]

pub fn new(
    format: Format,
    channels: u32,
    sample_rate: u32,
    cutoff_frequency: f64,
    order: u32
) -> BPFConfig
[src]

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

pub fn set_format(&mut self, format: u32)[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 cutoff_frequency(&self) -> f64[src]

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

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

pub fn set_order(&mut self, order: u32)[src]

If set to 0, will be treated as a passthrough (no filtering will be applied).

Trait Implementations

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