Enum vst2::plugin::CanDo
[−]
[src]
pub enum CanDo {
SendEvents,
SendMidiEvent,
ReceiveEvents,
ReceiveMidiEvent,
ReceiveTimeInfo,
Offline,
MidiProgramNames,
Bypass,
ReceiveSysExEvent,
MidiSingleNoteTuningChange,
MidiKeyBasedInstrumentControl,
Other(String),
}Features which are optionally supported by a plugin. These are queried by the host at run time.
Variants
SendEventsSendMidiEventReceiveEventsReceiveMidiEventReceiveTimeInfoOfflineMidiProgramNamesBypassReceiveSysExEventMidiSingleNoteTuningChangeMidiKeyBasedInstrumentControlOther(String)Trait Implementations
impl Debug for CanDo[src]
impl FromStr for CanDo[src]
type Err = String
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<CanDo, String>
Parses a string s to return a value of this type. Read more