pub trait SendExt<T> {
// Required method
fn send<D: Destination>(
self,
destination: D,
) -> impl Future<Output = Result<Response<Bytes>, HandlerError>> + Send;
}Required Methods§
fn send<D: Destination>( self, destination: D, ) -> impl Future<Output = Result<Response<Bytes>, HandlerError>> + Send
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".