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
Trait Implementations§
source§impl Clone for IIRFilterOptions
impl Clone for IIRFilterOptions
source§fn clone(&self) -> IIRFilterOptions
fn clone(&self) -> IIRFilterOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto 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