pub struct StandaloneAudioOnlyProcessor<P> { /* private fields */ }
Expand description
A standalone processor impl that will only process audio
Implementations§
source§impl<P> StandaloneAudioOnlyProcessor<P>
impl<P> StandaloneAudioOnlyProcessor<P>
pub fn new(processor: P, options: StandaloneOptions) -> Self
Trait Implementations§
source§impl<P: AudioProcessor> From<P> for StandaloneAudioOnlyProcessor<P>
impl<P: AudioProcessor> From<P> for StandaloneAudioOnlyProcessor<P>
source§impl<P> StandaloneProcessor for StandaloneAudioOnlyProcessor<P>
impl<P> StandaloneProcessor for StandaloneAudioOnlyProcessor<P>
type Processor = P
type Midi = NoMidiEventHandler
fn processor(&mut self) -> &mut Self::Processor
fn midi(&mut self) -> Option<&mut Self::Midi>
fn options(&self) -> &StandaloneOptions
fn handle(&self) -> Option<AudioProcessorHandleRef>
fn supports_midi(&mut self) -> bool
source§impl<P> StandaloneProcessorFactory for StandaloneAudioOnlyProcessor<P>
impl<P> StandaloneProcessorFactory for StandaloneAudioOnlyProcessor<P>
type Output = StandaloneAudioOnlyProcessor<P>
fn new_for_host(context: StandalonePluginContext) -> Self
Auto Trait Implementations§
impl<P> !RefUnwindSafe for StandaloneAudioOnlyProcessor<P>
impl<P> Send for StandaloneAudioOnlyProcessor<P>where
P: Send,
impl<P> Sync for StandaloneAudioOnlyProcessor<P>where
P: Sync,
impl<P> Unpin for StandaloneAudioOnlyProcessor<P>where
P: Unpin,
impl<P> !UnwindSafe for StandaloneAudioOnlyProcessor<P>
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