pub trait Controller {
type Config;
// Required method
fn configure(&self, _: Self::Config);
}
Expand description
Shared interface for configuring components.
pub trait Controller {
type Config;
// Required method
fn configure(&self, _: Self::Config);
}
Shared interface for configuring components.