pub trait WlanRxProxyInterface: Send + Sync {
type TransferResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn transfer(
&self,
payload: &WlanRxTransferRequest,
) -> Self::TransferResponseFut;
}