pub trait ContextProxyInterface: Send + Sync {
type GetEnvironResponseFut: Future<Output = Result<Vec<String>, Error>> + Send;
// Required method
fn get_environ(&self) -> Self::GetEnvironResponseFut;
}
pub trait ContextProxyInterface: Send + Sync {
type GetEnvironResponseFut: Future<Output = Result<Vec<String>, Error>> + Send;
// Required method
fn get_environ(&self) -> Self::GetEnvironResponseFut;
}