pub trait SimpleProxyInterface: Send + Sync {
type OnStartResponseFut: Future<Output = Result<SimpleOnStartResult, Error>> + Send;
// Required method
fn on_start(&self) -> Self::OnStartResponseFut;
}pub trait SimpleProxyInterface: Send + Sync {
type OnStartResponseFut: Future<Output = Result<SimpleOnStartResult, Error>> + Send;
// Required method
fn on_start(&self) -> Self::OnStartResponseFut;
}