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
//! Parameters for the [`Zll::is_zll_network`](crate::Zll::is_zll_network) command.

crate::frame::parameters::frame!(
    0x00BE,
    {},
    { is_zll_network: bool } => Zll(zll)::IsZllNetwork,
    impl {
        impl Response {
            /// Returns whether the network is a ZLL network.
            #[must_use]
            pub const fn is_zll_network(&self) -> bool {
                self.is_zll_network
            }
        }
    }
);