pub trait AppHandler: Send {
// Required method
fn handle_command(
&mut self,
endpoint: u16,
cluster: u32,
command: u32,
payload: &TlvItem,
attrs: &mut AttrContext<'_>,
) -> CommandResult;
}