ezsp 7.3.1

Ember ZNet Serial Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::ember::NodeId;

crate::frame::parameters::handler!(
    0x007C,
    { id: NodeId },
    impl {
        impl Handler {
            /// The short id for which a conflict was detected.
            #[must_use]
            pub const fn id(&self) -> NodeId {
                self.id
            }
        }
    }
);