1
2
3
4
5
6
7
/// Ответ от устройства
#[derive(Clone, Debug)]
pub enum Response {
    U16(Vec<u16>),
    Bool(Vec<bool>),
    Unit,
}