rsiot/components/cmp_derive_new/mod.rs
1//! Компонент для создания сообщений на основе других сообщений
2
3mod buffer_bound;
4mod component;
5mod config;
6mod error;
7mod fn_process;
8mod internal_message;
9mod task_input;
10mod task_output;
11mod task_period;
12
13pub use {
14 buffer_bound::BufferBound,
15 component::{COMPONENT_NAME, Cmp},
16 config::{Config, ConfigOutputSend},
17 error::Error,
18};