Struct xmlrpc::Request [] [src]

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

A request to call a procedure.

Methods

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

Creates a new request to call a function named name.

By default, no arguments are passed. Use the arg method to append arguments.

Appends an argument to be passed to the current list of arguments.

Calls the method using the given Client.

This will send the request to the / URL.

Returns a RequestResult indicating whether the request was sent and processed successfully (according to the rules of XML-RPC).

Formats this Request as XML.