pub trait TestControllerProxyInterface: Send + Sync {
type CreateFullmacResponseFut: Future<Output = Result<TestControllerCreateFullmacResult, Error>> + Send;
type DeleteFullmacResponseFut: Future<Output = Result<TestControllerDeleteFullmacResult, Error>> + Send;
// Required methods
fn create_fullmac(
&self,
bridge_client: ClientEnd<WlanFullmacImpl_Marker>,
) -> Self::CreateFullmacResponseFut;
fn delete_fullmac(&self, id: u32) -> Self::DeleteFullmacResponseFut;
}