Struct nih_plug::audio_setup::AuxiliaryBuffers
source · pub struct AuxiliaryBuffers<'a> {
pub inputs: &'a mut [Buffer<'a>],
pub outputs: &'a mut [Buffer<'a>],
}
Expand description
Contains auxiliary (sidechain) input and output buffers for a process call.
Fields§
§inputs: &'a mut [Buffer<'a>]
Buffers for all auxiliary (sidechain) inputs defined for this plugin. The data in these
buffers can safely be overwritten. Auxiliary inputs can be defined using the
AudioIOLayout::aux_input_ports
field.
outputs: &'a mut [Buffer<'a>]
Buffers for all auxiliary outputs defined for this plugin. Auxiliary outputs can be defined using the
AudioIOLayout::aux_output_ports
field.
Auto Trait Implementations§
impl<'a> RefUnwindSafe for AuxiliaryBuffers<'a>
impl<'a> Send for AuxiliaryBuffers<'a>
impl<'a> Sync for AuxiliaryBuffers<'a>
impl<'a> Unpin for AuxiliaryBuffers<'a>
impl<'a> !UnwindSafe for AuxiliaryBuffers<'a>
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