[][src]Struct grammarly::request::HttpRequest

pub struct HttpRequest {
    pub url: String,
    pub method: HttpRequestMethod,
    pub values: Vec<(String, String)>,
}

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.

method: HttpRequestMethod

HTTP request method type.

values: Vec<(String, String)>

Key-value pairs of the request data.

Methods

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]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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

impl Debug for HttpRequest[src]

Auto Trait Implementations

impl Send for HttpRequest

impl Sync for HttpRequest

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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