pub trait WlantapCtlProxyInterface: Send + Sync {
    type CreatePhyResponseFut: Future<Output = Result<i32, Error>> + Send;

    // Required method
    fn create_phy(
        &self,
        config: &WlantapPhyConfig,
        proxy: ServerEnd<WlantapPhyMarker>
    ) -> Self::CreatePhyResponseFut;
}

Required Associated Types§

source

type CreatePhyResponseFut: Future<Output = Result<i32, Error>> + Send

Required Methods§

source

fn create_phy( &self, config: &WlantapPhyConfig, proxy: ServerEnd<WlantapPhyMarker> ) -> Self::CreatePhyResponseFut

Implementors§