Struct ruroonga_client::RequestURI [] [src]

pub struct RequestURI<'a> { /* fields omitted */ }

Methods

impl<'a> RequestURI<'a>
[src]

Create RequestURI type resource.

Construct requesting URL from RequestURI type resource.

Examples

use ruroonga_client;
use ruroonga_client::builtin::command_query::CommandQuery;
let uri_base = ruroonga_client::URIBase::new().build();
let mut command = CommandQuery::new("select");
command.set_argument(vec![("table", "Sites")]);
let url = ruroonga_client::RequestURI::new(uri_base, command.encode()).url();

Trait Implementations

impl<'a> Debug for RequestURI<'a>
[src]

Formats the value using the given formatter.

impl<'a> Clone for RequestURI<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more