pub trait WifiEventCallbackProxyInterface: Send + Sync {
// Required methods
fn on_start(&self) -> Result<(), Error>;
fn on_stop(&self) -> Result<(), Error>;
fn on_subsystem_restart(
&self,
payload: WifiEventCallbackOnSubsystemRestartRequest,
) -> Result<(), Error>;
}