pub struct PassthroughParams;Expand description
Empty parameter struct for passthrough processor.
Trait Implementations§
Source§impl Clone for PassthroughParams
impl Clone for PassthroughParams
Source§fn clone(&self) -> PassthroughParams
fn clone(&self) -> PassthroughParams
Returns a duplicate 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 PassthroughParams
impl Debug for PassthroughParams
Source§impl Default for PassthroughParams
impl Default for PassthroughParams
Source§fn default() -> PassthroughParams
fn default() -> PassthroughParams
Returns the “default value” for a type. Read more
Source§impl ProcessorParams for PassthroughParams
impl ProcessorParams for PassthroughParams
Source§fn param_specs() -> &'static [ParamSpec]
fn param_specs() -> &'static [ParamSpec]
Returns the parameter specifications for this processor.
Source§fn from_param_defaults() -> Self
fn from_param_defaults() -> Self
Builds parameter values initialized from each
ParamSpec::default. Read moreSource§fn apply_plain_values(&mut self, _values: &[f32])
fn apply_plain_values(&mut self, _values: &[f32])
Applies plain parameter values in
param_specs() order. Read moreAuto Trait Implementations§
impl Freeze for PassthroughParams
impl RefUnwindSafe for PassthroughParams
impl Send for PassthroughParams
impl Sync for PassthroughParams
impl Unpin for PassthroughParams
impl UnsafeUnpin for PassthroughParams
impl UnwindSafe for PassthroughParams
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