pub struct AudioProcessorEmptyHandle;Expand description
An empty handle with no parameters
Trait Implementations
sourceimpl AudioProcessorHandle for AudioProcessorEmptyHandle
impl AudioProcessorHandle for AudioProcessorEmptyHandle
sourcefn parameter_count(&self) -> usize
fn parameter_count(&self) -> usize
Should return the number of parameters.
sourcefn get_parameter_spec(&self, _index: usize) -> ParameterSpec
fn get_parameter_spec(&self, _index: usize) -> ParameterSpec
After finding the number of parameters a callee will get
ParameterSpec declarations
giving more metadata about this parameter. Read moresourcefn get_parameter(&self, _index: usize) -> Option<ParameterValue>
fn get_parameter(&self, _index: usize) -> Option<ParameterValue>
Should return the value for the parameter at this index
sourcefn set_parameter(&self, _index: usize, _request: ParameterValue)
fn set_parameter(&self, _index: usize, _request: ParameterValue)
Should set the value for the parameter at this index
Auto Trait Implementations
impl RefUnwindSafe for AudioProcessorEmptyHandle
impl Send for AudioProcessorEmptyHandle
impl Sync for AudioProcessorEmptyHandle
impl Unpin for AudioProcessorEmptyHandle
impl UnwindSafe for AudioProcessorEmptyHandle
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