/// zigbee configuration
#[derive(Default)]pubstructConfig{/// The radio channel to operate on
pubradio_channel:u8,
/// Discovery type
pubdevice_discovery_type: DiscoveryType,
/// This indicates the device class
pubdevice_type:crate::apl::descriptors::node_descriptor::LogicalType,
}/// Discovery Type
#[derive(Default)]pubenumDiscoveryType{#[default]/// The IEEE address request is unicast to a particular device and assumes
/// the NWK address is known.
IEEE,/// The NWK address request is broadcast and carries the known IEEE address
/// as data payload.
NWK,}