Struct solicit::http::client::RequestStream [−][src]
A struct representing a request stream. It provides the headers that are to be sent when
initiating the request, as well as a Stream
instance that handles the received response and
provides the request body.
Fields
headers: Vec<Header>
The list of headers that will be sent with the request.
stream: S
The underlying Stream
instance, which will handle the response, as well as optionally
provide the body of the request.
Auto Trait Implementations
impl<S> Send for RequestStream<S> where
S: Send,
impl<S> Send for RequestStream<S> where
S: Send,
impl<S> Sync for RequestStream<S> where
S: Sync,
impl<S> Sync for RequestStream<S> where
S: Sync,