Struct solicit::http::Request [] [src]

pub struct Request {
    pub stream_id: u32,
    pub headers: Vec<Header>,
    pub body: Vec<u8>,
}

A struct representing a full HTTP/2 request, along with the full body, as a sequence of bytes.

Fields

stream_id
headers
body

Trait Implementations

Derived Implementations

impl Clone for Request

fn clone(&self) -> Request

fn clone_from(&mut self, source: &Self)