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 [`Networking::neighbor_count`](crate::Networking::neighbor_count) command.

crate::frame::parameters::frame!(
    0x007A,
    {},
    { value: u8 } => Networking(networking)::NeighborCount,
    impl {
        impl Response {
            /// Returns the number of neighbors.
            #[must_use]
            pub const fn value(&self) -> u8 {
                self.value
            }
        }
    }
);