Trait loopers_common::Host[][src]

pub trait Host<'a> {
    fn add_looper(&mut self, id: u32) -> Result<(), String>;
fn remove_looper(&mut self, id: u32) -> Result<(), String>;
fn output_for_looper<'b>(
        &'b mut self,
        id: u32
    ) -> Option<[&'b mut [f32]; 2]>
    where
        'a: 'b
; }

Required methods

Implementors