Struct grammarbot_io::request::HttpRequest[][src]

pub struct HttpRequest {
    pub url: String,
    pub headers: Vec<(String, String)>,
    pub data: RequestData,
}

The http request object. Used to pack grammarly request so that it can be used to send requests from other request crates (reqwest/hyper/etc). The main use case is when the library is built without the client feature, so you still can perform requests using your own implementation.

Fields

url: String

Request URL.

headers: Vec<(String, String)>

Key-value pairs of the request headers.

data: RequestData

Key-value pairs of the request data.

Implementations

impl HttpRequest[src]

pub fn send(&self) -> Result<Response, Error>[src]

Sends the request and returns the response using default client.

pub fn send_with_client(&self, client: &Client) -> Result<Response, Error>[src]

Sends the request using the provided client.

Trait Implementations

impl Clone for HttpRequest[src]

impl Debug for HttpRequest[src]

impl From<&'_ Request> for HttpRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.