Trait surge_traits::ModulationSourceControl[][src]

pub trait ModulationSourceControl: Debug {
Show 13 methods fn get_type(&self) -> ModSrcType;
fn get_output(&self) -> f64;
fn get_output01(&self) -> f64;
fn set_bipolar(&mut self, b: bool);
fn process_block(&mut self);
fn set_output(&mut self, x: f64);
fn enable(&mut self, v: bool);
fn enabled(&self) -> bool; fn per_voice(&self) -> bool { ... }
fn is_bipolar(&self) -> bool { ... }
fn attack(&mut self) { ... }
fn release(&mut self) { ... }
fn reset(&mut self) { ... }
}

Required methods

Provided methods

Implementors