[][src]Struct algoliasearch::client::Client

pub struct Client { /* fields omitted */ }

Algolia client

Methods

impl Client[src]

pub fn new(application_id: &str, api_key: &str) -> Client[src]

Initialize the client, providing your APPLICATION_ID and your API_KEY.

pub fn default() -> Client[src]

Itinialize the client. It will read the environenment or .env ALGOLIA_APPLICATION_ID and ALGOLIA_API_KEY variables to be used as APPLICATION_ID and API_KEY.

pub fn application_id(self, application_id: &str) -> Client[src]

Set your client's APPLICATION_ID.

pub fn api_key(self, api_key: &str) -> Client[src]

Set you client's API_KEY

pub fn init_index<T>(self, index_name: &str) -> Index<T>[src]

Initialize the client index, providing your INDEX_NAME.

let index = Client::default().init_index::<User>("users");

Trait Implementations

impl Debug for Client[src]

Auto Trait Implementations

impl Send for Client

impl Sync for Client

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Erased for T

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

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