rsiot/components/cmp_math/
mod.rs

1//! Комонент для математической обработки данных
2
3mod algs;
4mod component;
5mod config;
6mod error;
7mod fn_process;
8
9pub use algs::Algs;
10pub use component::Cmp;
11pub use config::{Config, IntMsgBound};
12pub use error::Error;
13
14type Result<T> = std::result::Result<T, Error>;