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.
Required Associated Types§
type Page: RemoteControlsPage
Required Methods§
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.