1
0
Fork 0

Document missing missing values in NoteEvent

This commit is contained in:
Robbert van der Helm 2023-02-08 03:07:13 +01:00
parent d2b25f8682
commit 3e4aec4dfe

View file

@ -35,6 +35,10 @@ pub enum MidiConfig {
MidiCCs,
}
// FIXME: Like the voice ID, channel and note number can also be omitted in CLAP. And instead of an
// Option, maybe this should use a dedicated type to more clearly indicate that missing
// values should be treated as wildcards.
/// Event for (incoming) notes. The set of supported note events depends on the value of
/// [`Plugin::MIDI_INPUT`][crate::prelude::Plugin::MIDI_INPUT]. Also check out the
/// [`util`][crate::util] module for convenient conversion functions.