2021-03-01 23:32:23 +00:00
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
2022-07-09 22:58:05 +00:00
|
|
|
#![cfg_attr(feature = "nightly", feature(generic_associated_types, type_alias_impl_trait))]
|
2021-03-01 23:32:23 +00:00
|
|
|
|
2022-07-09 22:05:57 +00:00
|
|
|
#[cfg(feature = "nightly")]
|
2021-12-17 11:50:48 +00:00
|
|
|
pub mod adapter;
|
2022-07-09 22:05:57 +00:00
|
|
|
|
2022-05-26 16:54:58 +00:00
|
|
|
pub mod shared_bus;
|
2022-07-08 13:47:47 +00:00
|
|
|
|
2022-07-08 22:00:55 +00:00
|
|
|
pub trait SetConfig {
|
|
|
|
type Config;
|
|
|
|
fn set_config(&mut self, config: &Self::Config);
|
2022-07-08 13:47:47 +00:00
|
|
|
}
|