pub trait TestControllerProxyInterface: Send + Sync {
    type CreateFullmacResponseFut: Future<Output = Result<TestControllerCreateFullmacResult, Error>> + Send;

    // Required method
    fn create_fullmac(
        &self,
        bridge_client: ClientEnd<WlanFullmacImplBridgeMarker>
    ) -> Self::CreateFullmacResponseFut;
}

Required Associated Types§

Required Methods§

source

fn create_fullmac( &self, bridge_client: ClientEnd<WlanFullmacImplBridgeMarker> ) -> Self::CreateFullmacResponseFut

Implementors§