Skip to main content

TestControllerProxyInterface

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§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§