pub trait NotePorts<P>where
P: Plugin,{
// Required methods
fn count(plugin: &P, is_input: bool) -> u32;
fn get(plugin: &P, index: u32, is_input: bool) -> Option<NotePortInfo>;
}
Required Methods§
fn count(plugin: &P, is_input: bool) -> u32
fn get(plugin: &P, index: u32, is_input: bool) -> Option<NotePortInfo>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.