pub trait GetConfig {
type Config;
// Required method
fn get_config(&self) -> Self::Config;
}
Expand description
Get the configuration of a peripheral driver.
Required Associated Types§
Required Methods§
Sourcefn get_config(&self) -> Self::Config
fn get_config(&self) -> Self::Config
Get the configuration of the driver.