8 lines
187 B
Rust
8 lines
187 B
Rust
|
pub mod e1;
|
||
|
|
||
|
pub trait DeviceBackend {
|
||
|
fn build_query(&self) -> ();
|
||
|
fn process_message(&self, msg: &str) -> ();
|
||
|
fn set_attribute(&self, attribute: &str, value: &str) -> ();
|
||
|
}
|