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