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