[][src]Struct faunadb::client::ClientBuilder

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

For building a new Fauna client.

Methods

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

pub fn uri(&mut self, uri: impl Into<Cow<'a, str>>) -> &mut Self[src]

Change the uri if using dedicated Fauna servers. Default: https://db.fauna.com.

pub fn timeout(&mut self, timeout: Duration) -> &mut Self[src]

Request timeout. Default: 60 seconds.

pub fn build(self) -> Result<Client>[src]

Creates the client.

pub fn build_sync(self) -> Result<SyncClient>[src]

Auto Trait Implementations

impl<'a> Sync for ClientBuilder<'a>

impl<'a> Send for ClientBuilder<'a>

impl<'a> Unpin for ClientBuilder<'a>

impl<'a> RefUnwindSafe for ClientBuilder<'a>

impl<'a> UnwindSafe for ClientBuilder<'a>

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T