pub trait Connect: Sized {
    fn connect<'a, T>(info: T) -> RedisFuture<'a, Self>
    where
        T: IntoConnectionInfo + Send + 'a
; }

Required Methods

Implementations on Foreign Types

Implementors