Struct reqwest::Request [−][src]
pub struct Request { /* fields omitted */ }A request which can be executed with Client::execute().
Methods
impl Request[src]
impl Requestpub fn new(method: Method, url: Url) -> Self[src]
pub fn new(method: Method, url: Url) -> SelfConstructs a new request.
pub fn method(&self) -> &Method[src]
pub fn method(&self) -> &MethodGet the method.
pub fn method_mut(&mut self) -> &mut Method[src]
pub fn method_mut(&mut self) -> &mut MethodGet a mutable reference to the method.
pub fn url(&self) -> &Url[src]
pub fn url(&self) -> &UrlGet the url.
pub fn url_mut(&mut self) -> &mut Url[src]
pub fn url_mut(&mut self) -> &mut UrlGet a mutable reference to the url.
pub fn headers(&self) -> &HeaderMap[src]
pub fn headers(&self) -> &HeaderMapGet the headers.
pub fn headers_mut(&mut self) -> &mut HeaderMap[src]
pub fn headers_mut(&mut self) -> &mut HeaderMapGet a mutable reference to the headers.
pub fn body(&self) -> Option<&Body>[src]
pub fn body(&self) -> Option<&Body>Get the body.
pub fn body_mut(&mut self) -> &mut Option<Body>[src]
pub fn body_mut(&mut self) -> &mut Option<Body>Get a mutable reference to the body.