pub trait RemoteControlsSection {
type Page: RemoteControlsPage;
// Required method
fn add_page(
&mut self,
name: impl Into<String>,
f: impl FnOnce(&mut Self::Page)
);
}
Expand description
A section or group of parameter pages. Empty sections will not be visible when using the plugin.