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§
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
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".