ezsp 5.0.0

Ember ZNet Serial Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Handlers for the trust center commands.

pub use self::trust_center_join::Handler as TrustCenterJoin;

mod trust_center_join;

/// The handler for the trust center command.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum Handler {
    /// The handler for the trust center join command.
    TrustCenterJoin(TrustCenterJoin),
}