rsiot/components_config/modbus_client/
response.rs

1
2
3
4
5
6
7
8
9
10
11
12
/// Ответ от устройства
#[derive(Clone, Debug)]
pub enum Response {
    /// Массив слов
    WordVector(Vec<u16>),

    /// Массив бит
    BitVector(Vec<bool>),

    /// Без ответа
    Unit,
}