[][src]Type Definition elastic::client::requests::index_open::IndexOpenRequestBuilder

type IndexOpenRequestBuilder<TSender> = RequestBuilder<TSender, IndexOpenRequestInner>;

An open index request builder that can be configured before sending.

Call Client.index_open to get an IndexOpenRequestBuilder. The send method will either send the request synchronously or asynchronously, depending on the Client it was opend from.

Methods

impl IndexOpenRequestBuilder<SyncSender>[src]

pub fn send(self) -> Result<CommandResponse>[src]

Send an IndexOpenRequestBuilder synchronously using a SyncClient.

This will block the current thread until a response arrives and is deserialised.

Examples

Open an index called myindex:

let response = client.index("myindex").open().send()?;

assert!(response.acknowledged());

impl IndexOpenRequestBuilder<AsyncSender>[src]

pub fn send(self) -> Pending[src]

Send an IndexOpenRequestBuilder asynchronously using an AsyncClient.

This will return a future that will resolve to the deserialised command response.

Examples

Open an index called myindex:

let future = client.index("myindex").open().send();

future.and_then(|response| {
    assert!(response.acknowledged());

    Ok(())
});