Struct web_audio_api::node::ConvolverOptions
source · pub struct ConvolverOptions {
pub buffer: Option<AudioBuffer>,
pub disable_normalization: bool,
pub channel_config: ChannelConfigOptions,
}
Expand description
ConvolverNode
options
Fields§
§buffer: Option<AudioBuffer>
The desired buffer for the ConvolverNode
disable_normalization: bool
The opposite of the desired initial value for the normalize attribute
channel_config: ChannelConfigOptions
AudioNode options
Trait Implementations§
source§impl Clone for ConvolverOptions
impl Clone for ConvolverOptions
source§fn clone(&self) -> ConvolverOptions
fn clone(&self) -> ConvolverOptions
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 moresource§impl Debug for ConvolverOptions
impl Debug for ConvolverOptions
source§impl Default for ConvolverOptions
impl Default for ConvolverOptions
source§fn default() -> ConvolverOptions
fn default() -> ConvolverOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ConvolverOptions
impl Send for ConvolverOptions
impl Sync for ConvolverOptions
impl Unpin for ConvolverOptions
impl UnwindSafe for ConvolverOptions
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