[][src]Struct miniaudio::high_pass_filtering::HPF1Config

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

Configuration for a first order high-pass filter.

Implementations

impl HPF1Config[src]

pub fn new(
    format: Format,
    channels: u32,
    sample_rate: u32,
    cutoff_frequency: f64
) -> HPF1Config
[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 cutoff_frequency(&self) -> f64[src]

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

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

pub fn set_q(&mut self, q: f64)[src]

Trait Implementations

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