pub struct ConvolverOptions {
pub buffer: Option<AudioBuffer>,
pub disable_normalization: bool,
pub audio_node_options: AudioNodeOptions,
}
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
audio_node_options: AudioNodeOptions
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
Auto Trait Implementations§
impl Freeze for ConvolverOptions
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