Struct web_audio_api::node::IIRFilterOptions
source · [−]pub struct IIRFilterOptions {
pub channel_config: ChannelConfigOptions,
pub feedforward: Vec<f64>,
pub feedback: Vec<f64>,
}
Expand description
Options for constructing a IIRFilterNode
Fields
channel_config: ChannelConfigOptions
audio node options
feedforward: Vec<f64>
feedforward coefficients
feedback: Vec<f64>
feedback coefficients
Auto Trait Implementations
impl RefUnwindSafe for IIRFilterOptions
impl Send for IIRFilterOptions
impl Sync for IIRFilterOptions
impl Unpin for IIRFilterOptions
impl UnwindSafe for IIRFilterOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more