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§

Required Methods§

Implementors§