Struct reool::Wait[][src]

pub struct Wait;

Simply a shortcut for CheckoutMode::Wait

Using this can be risky as connections are returned when dropped. If the pool has no idle connections left while none are returned a deadlock might occur. It is always safe to use this mode if only the RedisPool itself is used as a connection since it will immediately return the used connection after each operation.

Trait Implementations

impl Clone for Wait[src]

impl Copy for Wait[src]

impl Debug for Wait[src]

impl From<Wait> for DefaultPoolCheckoutMode[src]

impl From<Wait> for DefaultCommandTimeout[src]

impl From<Wait> for CheckoutMode[src]

Auto Trait Implementations

impl RefUnwindSafe for Wait

impl Send for Wait

impl Sync for Wait

impl Unpin for Wait

impl UnwindSafe for Wait

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,