Trait kernel::hil::Controller

source ·
pub trait Controller {
    type Config;

    // Required method
    fn configure(&self, _: Self::Config);
}
Expand description

Shared interface for configuring components.

Required Associated Types§

Required Methods§

source

fn configure(&self, _: Self::Config)

Implementors§