[][src]Struct ciseaux_client::SingleBuilder

pub struct SingleBuilder { /* fields omitted */ }

A builder to customize CiseauxSingle

Methods

impl SingleBuilder[src]

pub fn new(client: Client) -> SingleBuilder[src]

Use this to create a CiseauxSingle struct, client must be a redis::Client (from redis-rs)

pub fn set_conns_count(self, conns_count: ConnectionsCount) -> SingleBuilder[src]

Changes the number of connections in the pool. Default is 4 per threads

pub fn set_reconnect_behavior(
    self,
    reconnect_behavior: ReconnectBehavior
) -> SingleBuilder
[src]

Change the reconnect behavior. Default is one ReconnectBehavior::InstantRetry

pub async fn build(self) -> Result<CiseauxSingle, RedisError>[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.