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: boolThe opposite of the desired initial value for the normalize attribute
channel_config: ChannelConfigOptionsAudioNode options
Trait Implementations
sourceimpl Clone for ConvolverOptions
impl Clone for ConvolverOptions
sourcefn clone(&self) -> ConvolverOptions
fn clone(&self) -> ConvolverOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ConvolverOptions
impl Debug for ConvolverOptions
sourceimpl Default for ConvolverOptions
impl Default for ConvolverOptions
sourcefn 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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