rsiot-http-server 0.0.71

HTTP-сервер
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::Config;
use rsiot_component_core::CmpInOut;

#[derive(Clone)]
pub struct SharedState<TMsg>
where
    TMsg: Clone,
{
    pub cmp_interface: CmpInOut<TMsg>,
    pub config: Config<TMsg>,
}