2021-03-02 00:32:23 +01:00
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
#![feature(generic_associated_types)]
|
2021-03-02 22:09:47 +01:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2021-03-02 00:32:23 +01:00
|
|
|
|
2021-12-17 12:50:48 +01:00
|
|
|
pub mod adapter;
|
2022-05-26 18:54:58 +02:00
|
|
|
pub mod shared_bus;
|
2022-07-08 15:47:47 +02:00
|
|
|
|
|
|
|
pub trait SetConfig<C> {
|
|
|
|
fn set_config(&mut self, config: &C);
|
|
|
|
}
|