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