pub trait ConfigurableNetstackProxyInterface: Send + Sync {
type ConfigureInterfaceResponseFut: Future<Output = Result<ConfigurableNetstackConfigureInterfaceResult, Error>> + Send;
// Required method
fn configure_interface(
&self,
payload: InterfaceOptions,
) -> Self::ConfigureInterfaceResponseFut;
}Required Associated Types§
type ConfigureInterfaceResponseFut: Future<Output = Result<ConfigurableNetstackConfigureInterfaceResult, Error>> + Send
Required Methods§
fn configure_interface( &self, payload: InterfaceOptions, ) -> Self::ConfigureInterfaceResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".