Trait Socks5BinderSeal
pub trait Socks5BinderSeal<S>:
Send
+ Sync
+ 'static {
// Required method
fn accept_bind(
&self,
ctx: Context,
stream: S,
destination: Authority,
) -> impl Future<Output = Result<(), Error>> + Send;
}
Required Methods§
fn accept_bind( &self, ctx: Context, stream: S, destination: Authority, ) -> impl Future<Output = Result<(), Error>> + 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.