Trait rama::http::layer::traffic_writer::RequestWriter
pub trait RequestWriter:
Send
+ Sync
+ 'static {
// Required method
fn write_request(
&self,
req: Request<Body>,
) -> impl Future<Output = ()> + Send;
}
Expand description
A trait for writing http requests.
Required Methods§
Object Safety§
This trait is not object safe.