pub trait ProxyDestinationDetector:
Send
+ Sync
+ 'static {
// Required method
fn determine(
&self,
stream: &mut TcpStream,
) -> impl Future<Output = Result<ProxyDestination>> + Send;
}
Required Methods§
fn determine( &self, stream: &mut TcpStream, ) -> impl Future<Output = Result<ProxyDestination>> + Send
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.