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: ChannelConfigOptionsaudio 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§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more