fidl_test_wlan_testcontroller

Trait TestControllerProxyInterface

Source
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;
}

Required Associated Types§

Required Methods§

Source

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

Source

fn delete_fullmac(&self, id: u32) -> Self::DeleteFullmacResponseFut

Implementors§