pub trait KnobPlugin {
    fn create(&self, position: Knob) -> Result<()>;
    fn destroy(&self, position: Knob) -> Result<()>;
    fn on_change(&self, position: KnobRotateEvent) -> Result<&str>;
}

Required Methods

Implementors