ezsp 6.0.1

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

crate::frame::parameters::handler!(
    0x00BB,
    { network_info: Network },
    impl {
        impl Handler {
            /// Information about the network.
            #[must_use]
            pub const fn network_info(&self) -> &Network {
                &self.network_info
            }
        }
    }
);