ezsp 6.0.1

Ember ZNet Serial Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::convert::Infallible;

use super::{Callback, Response};

crate::frame::parameters::parameter_group_enum!(
    Parameters,
    Response,
    Callback,
    impl {
        /// Implementation to satisfy trait bound on `Into<Parameters>`.
        impl From<Infallible> for Parameters {
            fn from(value: Infallible) -> Self {
                match value {}
            }
        }
    },
);