Struct ruroonga_client::HTTPRequest [] [src]

pub struct HTTPRequest { /* fields omitted */ }

Methods

impl HTTPRequest
[src]

Create a HTTP client.

Set authentication information.

Note that this method also sets auth: true to use basic authentication.

And this method uses builder pattern and returns self.

Examples

extern crate ruroonga_client as groonga;

groonga::HTTPRequest::new()
  .authenticate("user", "password");

Creating an outgoing request with HTTP.

Creating an loading data request via POST.

Read the Response.

Trait Implementations

impl Default for HTTPRequest
[src]

Returns the "default value" for a type. Read more