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